
	var IBEPopup;
	var popup_width = 379;
	var popup_height = 260;

	screen_width = ( screen.width / 2 ) - ( popup_width / 2 ) - 20;
	screen_height = ( screen.height / 2 ) - ( popup_height / 2 ) - 20;					
	
	/* Falls Popupfenster zu weit links oben ist setze fixe Werte */
	if(screen_width < 200 && screen_height < 200)
	{
		screen_width = 200;
		screen_height = 200;
	}
	
	// Ziehe WL Path
	var WL = "";
	if(!contextPath.match(extCtxPath)) { WL = "wl"; }

	function closeProgressWindow() {
		IBEPopup = window.open(contextPath + "/ibe/Popup_Warten_Close.jspd",'IBEPopup'+WL+session,"noresize,status=no,width="+popup_width+",height="+popup_height+",left="+screen_width+",top="+screen_height);
	}

	function openProgressWindow() {
		IBEPopup = window.open(extCtxPath+"/popup_warten.html", "IBEPopup"+WL+session, "noresize,status=no,width="+popup_width+",height="+popup_height+",left="+screen_width+",top="+screen_height);
	}

	function openProgressWindowBuchung() {
		IBEPopup = window.open(extCtxPath+"/popup_warten_buchung.html", "IBEPopup"+WL+session, "noresize,status=no,width="+popup_width+",height="+popup_height+",left="+screen_width+",top="+screen_height);
	}
	
	function openProgressAlternativeWindow() {
		IBEPopup = window.open(extCtxPath+"/popup_warten_alternativangebote.html", "IBEPopup"+WL+session, "noresize,status=no,width="+popup_width+",height="+popup_height+",left="+screen_width+",top="+screen_height);
	}
	