<!-- 
   function newScreen(theURL) {
       var PopUp = '';
	   if (PopUp.location && PopUp.closed)
		   {
				   PopUp.location.href = theURL;
		   }
		   else
		   {		
				PopUp=window.open(theURL,'name', 'left=10, top=10, fullscreen=no, scrollbars=yes, resizable=no');
				PopUp.opener.focus()
				if (PopUp.opener) PopUp.opener = self;
		   }
		   if (window.focus) {PopUp.focus()}
   }
   

// -->

