<!--
function fullPopUp(Fenster)
{
	//self.close()
	var win = window.open(Fenster,"",'screenX=0,screenY=0,alwaysRaised=0,directories=1,location=1,menubar=1,scrollbars=1,status=1,toolbar=1,resizable=1');
	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 centerPopUp01(Fenster,width,height)
{
	idwin = window.open(Fenster,"",'width='+width+',height='+height+',screenX=0,screenY=0,alwaysRaised=0,directories=1,location=1,menubar=1,scrollbars=1,status=1,toolbar=1');

	idwin.moveTo(Math.round((screen.width-width)/2) , Math.round((screen.height-height)/2));
	idwin.focus();
}
function centerPopUp(Fenster,width,height)
{
	idwin = window.open(Fenster,"",'width='+width+',height='+height+',screenX=0,screenY=0,alwaysRaised=0,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 surfPopUp(Fenster,width,height)
{
	idwin = window.open(Fenster,"",'width='+width+',height='+height+',screenX=0,screenY=0,alwaysRaised=0,directories=yes,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes');

	idwin.moveTo(Math.round((screen.width-width)/2) , Math.round((screen.height-height)/2));
	idwin.focus();
}
// -->
