/* 画像を別ウィンドウで開く */
function OpenLargeImage(imgURL, imgWidth, imgHeight, imgCap) {
	if (imgCap == undefined) {
		imgCap = "　";
	}
	
  /* ウィンドウを開く */
  NewWindow = window.open('','photo','width='+(imgWidth+30)+',height='+(imgHeight+180));

  /* ウィンドウがすでに開いている可能性があるため、ウィンドウサイズを調整する */
  NewWindow.resizeTo(imgWidth+30,imgHeight+180);

  /* ウィンドウにhtmlを書き出す */
  NewWindow.document.clear();
  NewWindow.document.write("<html>");
  NewWindow.document.write("<head>");
  NewWindow.document.write("<title>画像 商品化権資料センター (JLIC)</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.print()'>");
  NewWindow.document.write("            <input type='button' value='閉じる' onClick='window.close()'>");
  NewWindow.document.write("          </td>");
  NewWindow.document.write("          <td class='copyright' style='font-size:60%'>(C) Copyright Japan Licensing Information Center 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);
}
