﻿<!--	
	function showWin(link, w, h){  
	   var winObject=null;	
	   var fw = (screen.width-w)/2;
	   var fh = (screen.height-h)/2;  
        winObject=window.open (link,'','scrollbars=1,width='+ w +',height='+ h +',top='+fh+',left='+fw);	
	}
	
	function printWin(){  
	   var winObject=null;	
        winObject=window.open ("printPage.asp",'','scrollbars=yes,resizable=yes,menubar=yes,status=yes,width=700,height=500,top=0,left=0');	
	}
	
	function printPage(){
		window.resizeTo(screen.width, screen.height);
		fpPage.innerHTML = window.opener.fpContent.innerHTML;
	}
	
	function objFocus(obj){
		obj.value='';
		obj.focus();
	}
	

//-->