/* BGMウィンドウを開く */
function sub_Window(text3) {
  /* ウィンドウを開く */
  NewWindow = window.open('','bgm','width=400,height=300,scrollbars=0');

  /* ウィンドウにhtmlを書き出す */
  NewWindow.document.clear();
  NewWindow.document.write("<html>");
  NewWindow.document.write("<head>");
  NewWindow.document.write("<title>甘利明 公式サイト BGM - Akira Amari Official Site - BGM1</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/bgm.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 border='0' cellspacing='0' class='main'>");
  NewWindow.document.write("  <tr>");
  NewWindow.document.write("    <td class='image'>");
  NewWindow.document.write("      <EMBED SRC=\"../bgm/"+text3+"\" autostart='true' loop='true' width='350' heigh='20' hidden='true'><br>");
  NewWindow.document.write("      大空と大地の中で<br>");
  NewWindow.document.write("      作詞・作曲: 松山千春<br><br>");
  NewWindow.document.write("      甘利明はこんな人 - <a href='http://www.amari-akira.com/profile/amariakira_nb.html#favoritesong' target='MainFrame'>♪好きな歌♪</a> をご覧ください<br>");
  NewWindow.document.write("      (ボリュームはパソコン本体で調整してください。)<br><br>");
  NewWindow.document.write("      <font size=2>ポップアップ BGM にしておくと、<br>他のページでも BGM をお聴きいただけます。</font><br>");
  NewWindow.document.write("      <form name='form1' method='post' action=''>");
  NewWindow.document.write("        <input name='button1' type='button' value='閉じる' onClick='window.close()'>");
  NewWindow.document.write("      </form>");
  NewWindow.document.write("    </td>");
  NewWindow.document.write("  </tr>");
  NewWindow.document.write("  <tr>");
  NewWindow.document.write("    <td class='copyright'>");
  NewWindow.document.write("      JASRAC 許諾番号 J040610840<br>");
  NewWindow.document.write("      (C) Copyright Office Akira Amari All Rights Reserved.");
  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();
}
