// JavaScript Document
function photo(theURL) {
imgwin=open("", "photo", "width=830,height=730");
imgwin.document.open();
imgwin.document.write(
'<html>\r\n',
'<head>\r\n',
'<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">\r\n',
'<title>PHOTO</title>\r\n',
'</head>\r\n',
'<body bgcolor="#ffffff" onLoad="javascript:window.focus();">\r\n',
'<div align="center"><img src="' + theURL +'" ></div>\r\n',
'<p align="center"><A HREF="#" onClick="window.close();"><IMG SRC="img/cls.gif" WIDTH="47" HEIGHT="20" VSPACE="5" BORDER="0"></A></p>\r\n',
'</body>\r\n',
'</html>'
);
imgwin.document.close();
}


function photo2(theURL) {
imgwin=open("", "photo", "width=730,height=890");
imgwin.document.open();
imgwin.document.write(
'<html>\r\n',
'<head>\r\n',
'<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">\r\n',
'<title>PHOTO</title>\r\n',
'</head>\r\n',
'<body bgcolor="#ffffff" onLoad="javascript:window.focus();">\r\n',
'<div align="center"><img src="' + theURL +'" ></div>\r\n',
'<p align="center"><A HREF="#" onClick="window.close();"><IMG SRC="img/cls.gif" WIDTH="47" HEIGHT="20" VSPACE="5" BORDER="0"></A></p>\r\n',
'</body>\r\n',
'</html>'
);
imgwin.document.close();
}

