	
	/* Popup Window Code */

	function openWindow( url, width, height, options, name ) {	
		if ( ! width ) width = 714;
		if ( ! height ) height = 536;
		if ( ! options ) options = "scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
		if ( ! name ) {
			if (url.indexOf("design.udk-berlin.de") > -1) {
				name = "insideSiteWindow";
			} else {
				name = "outsideSiteWindow";
			}
		} 
		var popupWindow = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
		popupWindow.focus();
	}