function openFullScreen(theURL) {
   var H    = parseInt(screen.availHeight);
   var W    = parseInt(screen.availWidth);
   var isIE = false;
	 var s    = ",width=" + W + ",height=" + H;
	
	if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion)>=4) 
	   isIE=true;

	if (isIE) {
		splashWin = window.open( theURL , '', 'left=0,top=0,screenX=0,screenY=0')//fullscreen=1

		splashWin.resizeTo( Math.ceil( W + 10) , Math.ceil( H + 40 ) )
		splashWin.moveTo( -5 , -25 )
	}
	else{    
		var splashWin = window.open(theURL, '', 'left=0,top=0,screenX=0,screenY=0' + s);
      }
	splashWin.focus();
}
//end function   


function popup(strURL, intHeight, intWidth, blnScrollbars) {
   var isNS    = (navigator.appVersion.indexOf("MSIE") != -1) ? false : true;
   var intLeft = (screen.width-intWidth)/2;
   var intTop  = (screen.height-intHeight)/2;
   var strUseScroll = blnScrollbars?'scrollbars=yes,':'scrollbars=no,';
   var strAttr = strUseScroll + 'width=' + intWidth + ',height=' + intHeight + ',top=' + intTop + ',left=' + intLeft;
   
   newWin = window.open(strURL, 'zentrum', strAttr);
   newWin.focus();
   }
//end function   
