<!--
function popup_global(url, breite, hoehe, oben, links, modus, scrollbars) {
		
	if (url != "#")
	{
		var newWindow;
	   	var undefined;
		if (oben == "") {var oben = (screen.height / 2) - 125;}
		if (links == "") {var links = (screen.width / 2) - 125;}
		//esli eshe gde nibud ne budet sushestvovat var scrollbars
		if(scrollbars == undefined) {scrollbars="1";}
		newWindow=window.open(url,"myWindow","height="+hoehe+",width="+breite+",toolbar=0,scrollbars="+scrollbars+",location=0,statusbar=0,menubar=0,resizable=0,top ="+oben+",left ="+links);
		// Abfragen für fokusieren.
		if (modus == "popup")
		{
	  		newWindow.focus();
		}
		else 
		{
	  		focus();
		}
	}
}
//-->

<!--
function window_global(url, breite, hoehe, oben, links, modus, scrollbars) {
		
	if (url != "#")
	{
		var newWindow;
	   	var undefined;
		//esli eshe gde nibud ne budet sushestvovat var scrollbars
		if(scrollbars == undefined) {scrollbars="1";}
		newWindow=window.open(url,"myWindow","");
		//newWindow=window.resizeTo('300','300');
		// Abfragen für fokusieren.
		if (modus == "popup")
		{
	  		newWindow.focus();
		}
		else 
		{
	  		focus();
		}
	}
}
//-->
