<!-- 
   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=yes');
				PopUp.opener.focus()
				if (PopUp.opener) PopUp.opener = self;
		   }
		   if (window.focus) {PopUp.focus()}
   }
   
   	function fitWindowSize() {
		//this.resizeTo(500, 500);
		width = document.images[3].width + 50;
		height = document.images[3].height + 200;
		if(width=="") width=250;
		if(height=="50") height=250;
		this.resizeTo(width, height);	
	}
// -->
