// JavaScript Document
function photo(theURL, theTitle) {
imgwin=open("", "photo", "width=790,height=600");
imgwin.document.open();
imgwin.document.write(
'<html>\r\n',
'<head>\r\n',
'<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">\r\n',
'<title>' + theTitle + '&nbsp;|&nbsp;NISSIN FOODS HOLDINGS</title>\r\n',
'</head>\r\n',
'<body bgcolor="#ffffff" onLoad="javascript:window.focus();" marginheight="10">\r\n',
'<div align="center"><table border="0" cellspacing="0" cellpadding="0"><tr><td height="480"><img src="' + theURL +'" ></div>\r\n',
'<p align="center" style="color:#3366cc;font-size: 12px;">| <a href="#" onClick="window.close();">close</a> |</p><p align="center" style="font-size:10px;font-family:verdana,Sans-Serif;">All rights reserved, Copyright(c) 2009 NISSIN FOODS HOLDINGS</p></td></tr></table>\r\n',
'</body>\r\n',
'</html>'
);
imgwin.document.close();
}

