/* 画像を別ウィンドウで開く */
function MM_openBrWindow(imgURL,imgWidth,imgHeight) {
  /* ウィンドウを開く */
  NewWindow = window.open('','photo','width='+(imgWidth+30)+',height='+(imgHeight+90));

  /* ウィンドウがすでに開いている可能性があるため、ウィンドウサイズを調整する */
  NewWindow.resizeTo(imgWidth+30,imgHeight+90);

  /* ウィンドウにhtmlを書き出す */
  NewWindow.document.clear();
  NewWindow.document.write("<html>");
  NewWindow.document.write("<head>");
  NewWindow.document.write("<title>甘利明 公式サイト 写真 - Akira Amari Official Site - Photograph</title>");
  NewWindow.document.write("<meta http-equiv='Content-Type' content='text/html; charset=Shift_JIS'>");
  NewWindow.document.write("<link rel='stylesheet' href='http://www.amari-akira.com/common/photo.css'>");
  NewWindow.document.write("<!-- (C) Copyright Office Akira Amari All Rights Reserved. -->");
  NewWindow.document.write("<!-- Producded by UNIVERSAL TECHNOLOGY Ltd. -->");
  NewWindow.document.write("</head>");
  NewWindow.document.write("<body>");
  NewWindow.document.write("<table width='100%' border='0' cellspacing='0' class='main' height='100%'>");
  NewWindow.document.write("  <tr>");
  NewWindow.document.write("    <td class='image'>");
  NewWindow.document.write("      <table border='0' cellspacing='0' width='200'>");
  NewWindow.document.write("        <tr>");
  NewWindow.document.write("          <td><a href='javascript:' onClick='window.close()'><img src='"+imgURL+"' width='"+imgWidth+"' height='"+imgHeight+"' border='0' alt='画像をクリックすると、このウィンドウを閉じます。'></a></td>");
  NewWindow.document.write("        </tr>");
  NewWindow.document.write("        <tr>");
  NewWindow.document.write("          <td class='copyright'>(C) Copyright Office Akira Amari All Rights Reserved.</td>");
  NewWindow.document.write("        </tr>");
  NewWindow.document.write("      </table>");
  NewWindow.document.write("    </td>");
  NewWindow.document.write("  </tr>");
  NewWindow.document.write("</table>");
  NewWindow.document.write("</body>");
  NewWindow.document.write("</html>");
  NewWindow.document.close();
  NewWindow.focus();
}

/* 画像を別ウィンドウで開く */
function OpenLargeImage(imgURL, imgWidth, imgHeight, imgCap) {
  /* ウィンドウを開く */
  NewWindow = window.open('','photo','width='+(imgWidth+30)+',height='+(imgHeight+120));

  /* ウィンドウがすでに開いている可能性があるため、ウィンドウサイズを調整する */
  NewWindow.resizeTo(imgWidth+30,imgHeight+120);

  /* ウィンドウにhtmlを書き出す */
  NewWindow.document.clear();
  NewWindow.document.write("<html>");
  NewWindow.document.write("<head>");
  NewWindow.document.write("<title>甘利明 公式サイト 写真 - Akira Amari Official Site - Photograph</title>");
  NewWindow.document.write("<meta http-equiv='Content-Type' content='text/html; charset=Shift_JIS'>");
  NewWindow.document.write("<link rel='stylesheet' href='http://ecology-cafe.net/css/photo.css'>");
  NewWindow.document.write("<!-- copyright ecology-cafe all rights reserved. -->");
  NewWindow.document.write("<!-- Producded by UNIVERSAL TECHNOLOGY Ltd. -->");
  NewWindow.document.write("</head>");
  NewWindow.document.write("<body>");
  NewWindow.document.write("<table width='100%' border='0' cellspacing='0' class='main' height='100%'>");
  NewWindow.document.write("  <tr>");
  NewWindow.document.write("    <td class='base'>");
  NewWindow.document.write("      <table border='0' cellspacing='0' width='200'>");
  NewWindow.document.write("        <tr>");
  NewWindow.document.write("          <td colspan='2' class='image'><img src='" + imgURL + "' width='" + imgWidth + "' height='" + imgHeight + "' alt='" + imgCap + "'><br>" + imgCap + "</td>");
  NewWindow.document.write("        </tr>");
  NewWindow.document.write("        <tr>");
  NewWindow.document.write("          <td class='nav'>");
  NewWindow.document.write("            <input type='button' value='閉じる' onClick='window.close()'>");
  NewWindow.document.write("          </td>");
  NewWindow.document.write("          <td class='copyright'>(C) Copyright Office Akira Amari All Rights Reserved.</td>");
  NewWindow.document.write("        </tr>");
  NewWindow.document.write("      </table>");
  NewWindow.document.write("    </td>");
  NewWindow.document.write("  </tr>");
  NewWindow.document.write("</table>");
  NewWindow.document.write("</body>");
  NewWindow.document.write("</html>");
  NewWindow.document.close();
  NewWindow.focus();

  urchinTracker(imgURL);
}
