function openWin(){
	window.open(window.location.href,"printPreview");
}

function windowOpen(){
	var woUri=windowOpen.arguments[0],woName=windowOpen.arguments[1],wofeature=windowOpen.arguments[2];
	var woNew = window.open("",woName,wofeature);
	woNew.location.href = woUri;
	woNew.focus();
}


function photo(theURL, theTitle) {
imgwin=open("", "photo", "width=650,height=670");
imgwin.document.open();
imgwin.document.write(
'<html>\r\n',
'<head>\r\n',
'<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n',
'<title>' + theTitle + '&nbsp;|&nbsp;INPEX CORPORATION</title>\r\n',
'</head>\r\n',
'<body bgcolor="#ffffff" onLoad="javascript:window.focus();" marginheight="10">\r\n',
'<div align="center"><h1 style="font-family:Sans-Selif;font-size:18px;background-color: #e6e6e6;margin-bottom: 5px;padding: 2px 5px 2px 11px;border-left: 10px solid #009140;text-align: left;">' + theTitle + '</h1>\r\n',
'<img src="' + theURL +'" ></div>\r\n',
'<p align="center" style="color:#3366cc;font-size: 12px;"> | <a href="#" onClick="window.close();">Close Window</a> | </p>\r\n',
'<hr>\r\n',
'<p align="center" style="font-size:10px;font-family:verdana,Sans-Serif;">Copyright &copy; 2008 INPEX Corporation. All rights reserved.</p>\r\n',
'</body>\r\n',
'</html>'
);
imgwin.document.close();
}