// 画像を表示するためのJavaScript スクリプト
function openPhotoWindow(fileName){
  newWindow = window.open('photo','Photo Image','width=400,height=360');
  newWindow.document.open();
  newWindow.document.write('<html>');
  newWindow.document.write('<head>');
  newWindow.document.write('<title>', '<','/title>');
  newWindow.document.write('<','/head>');
  newWindow.document.write('<body topmargin=0 leftmargin=0>');
  newWindow.document.write('<img src=\"',fileName,'\">' );
  newWindow.document.write('<' , '/body>');
  newWindow.document.write('<' , '/html>');
  newWindow.document.close();
}
