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=yes,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=yes,width='+w+',height='+h+',left='+leftPos+',top='+topPos+',screenX='+leftPos+',screenY='+topPos+'');
	}
	
	function OpenWindow2(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=yes,width='+w+',height='+h+',left='+leftPos+',top='+topPos+',screenX='+leftPos+',screenY='+topPos+'');
	}
	
 