function openWindow(strURL) {
	var intWidth = 500;
	var intHeight = 650;
	var intTop = (screen.height-intHeight)/2;
	var intLeft = (screen.width-intWidth)/2;
	window.open(strURL,"POPUP","width="+intWidth+",height="+intHeight+",top="+intTop+",left="+intLeft+",scrollbars=yes,toolbar=no,locationbar=no");
}

function jsDisplayFullSize(strImagePath) {
	var intWindowWidth = 630;
	var intWidowHeight = 510;
	var intTop = (screen.height-intWidowHeight)/2;
	var intLeft = (screen.width-intWindowWidth)/2;
	
	myWin = window.open('','','width='+intWindowWidth+',height='+intWidowHeight+',top='+intTop+',left='+intLeft+',scrollbars=no,toolbar=no,locationbar=no');
	myWin.document.write('<html>');
	myWin.document.write('<head>');
	myWin.document.write('<title>Photo</title>');
	myWin.document.write('<link href="../css/style_popups.css" rel="stylesheet" type="text/css">');
	myWin.document.write('</head>');
	myWin.document.write('<body bgcolor="#FFFFFF" onLoad="Javascript:self.focus();" onBlur="Javascript:self.close();">');
	myWin.document.write('<p align="center"><img src="'+strImagePath+'" border="0" width="580" height="420"/></p>');
	myWin.document.write('<form>');
	myWin.document.write('<p align="center"><input type="button" class="button" name="btnClose" value="Close Window" onClick="Javascript:self.close();"></p>');
	myWin.document.write('</form>');
	myWin.document.write('</body>');
	myWin.document.write('</html>');
	myWin.document.close();
	myWin.focus();	
}

function submitform()
	{ setTimeout('thankyou()',4000); }

function thankyou() 
	{ location.href="thankyou.htm"; }
