<!--
	function openWin( windowURL, windowName, width ) { 
		leftPos = (screen.width-width)/2;
		topPos = (screen.height-450)/2 - 50;
		if (screen.height > 550){
			height = 500;
		}else{
			height = 400;
		}
		return window.open( windowURL, windowName,  'width='+width+',top='+topPos+',left='+leftPos+',height='+height+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1' ) ; 
	} 
// -->
