function OpenWindow(w,h,page)	{ 		var leftPos=((screen.width-w)/2);		var topPos=((screen.height-h)/2);		window.open(''+page+'','window','scrollbars=auto,status=no,location=no,menubar=no,toolbar=no,resizable=no,width='+w+',height='+h+',left='+leftPos+',top='+topPos+',screenX='+leftPos+',screenY='+topPos+'');	}	function OpenScrollWindow(w,h,page)	{ 		var leftPos=((screen.width-w)/2);		var topPos=((screen.height-h)/2);		window.open(''+page+'','window2','scrollbars=yes,status=no,location=no,menubar=no,toolbar=no,resizable=no,width='+w+',height='+h+',left='+leftPos+',top='+topPos+',screenX='+leftPos+',screenY='+topPos+'');	}	function OpenPrintWindow(w,h,page)	{ 		var leftPos=((screen.width-w)/2);		var topPos=((screen.height-h)/2);		window.open(''+page+'','window2','scrollbars=yes,status=no,location=no,menubar=yes,toolbar=yes,resizable=no,width='+w+',height='+h+',left='+leftPos+',top='+topPos+',screenX='+leftPos+',screenY='+topPos+'');	}