<!--function fullPopUp(Fenster){	//self.close()	var win = window.open(Fenster,"",'screenX=0,screenY=0,alwaysRaised=yes,directories=0,location=0,menubar=0,scrollbars=0,status=0,toolbar=0,resizable=0');	win.focus();	var BrowserName    = navigator.appName;	var BrowserVersion = navigator.appVersion;	var VersionShort   = BrowserVersion.substr(0, 1);	win.moveTo(0, 0);	var high  = screen.height;	var wide = screen.width;	if(VersionShort  > 3)	{		win.moveTo(0, 0);		if(BrowserName == "Netscape")		{			win.outerHeight = high;			win.outerWidth = wide;		}		else if(BrowserName == "Microsoft Internet Explorer")		{			win.resizeTo(wide, high);		}	}}function centerPopUp(Fenster,width,height){	idwin = window.open(Fenster,"",'width='+width+',height='+height+',screenX=0,screenY=0,alwaysRaised=yes,directories=0,location=0,menubar=0,scrollbars=0,status=0,toolbar=0');	idwin.moveTo(Math.round((screen.width-width)/2) , Math.round((screen.height-height)/2));	idwin.focus();}function centerPopUpScroll(Fenster,width,height){	idwin = window.open(Fenster,"",'width='+width+',height='+height+',screenX=0,screenY=0,alwaysRaised=yes,directories=0,location=0,menubar=0,scrollbars=1,status=1,toolbar=0');	idwin.moveTo(Math.round((screen.width-width)/2) , Math.round((screen.height-height)/2));	idwin.focus();}function surfPopUp(Fenster,width,height){	idwin = window.open(Fenster,"",'width='+width+',height='+height+',screenX=0,screenY=0,alwaysRaised=yes,directories=0,location=0,menubar=0,scrollbars=1,status=1,toolbar=1');	idwin.moveTo(Math.round((screen.width-width)/2) , Math.round((screen.height-height)/2));	idwin.focus();}// -->
