//flashを表示するタグをJavaScriptで書き出す関数function write_m(menu_no, arg) {	var path = "";	//img画像のパス指定	if (arg != 1 || arg == "") {		//「お問い合わせ」以外は、フルパスにする		path = "http://www.yonex-cc.com/";		//ロールオーバーのパスも変更		setPath(0);	} else if (arg == 1) {		//「お問い合わせ」は、相対パスにする		path = "";		//ロールオーバーのパスも変更		setPath(1);	}	document.open();	document.write('<table width="148" border="0" cellspacing="0" cellpadding="0">');	document.write('  <tr>');	document.write('    <td>');	document.write('      <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="148" height="359" id="menu" align="middle">');	document.write('      <param name="allowScriptAccess" value="sameDomain" />');	document.write('      <param name="movie" value="' + path + 'menu.swf?OpenM='+menu_no+'" />');	document.write('      <param name="quality" value="high" />');	document.write('      <param name="bgcolor" value="#ffffff" />');	document.write('      <embed src=\"' + path + 'menu.swf?OpenM='+menu_no+'\" quality=\"high\" bgcolor=\"#ffffff\" width=\"148\" height=\"359\" name=\"menu\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />');	document.write('      </object>');	document.write('    </td>');	document.write('  </tr>');	document.write('</table>');	document.write('<!-- 左メニューここまで -->');	document.write('<!-- web予約ここから -->');	document.write('<table width="148" border="0" cellspacing="10" cellpadding="0">');//	document.write('  <tr>');//	document.write('    <td align="center"><a href="http://www.yonex-cc.com/index.html">');//	document.write('    <img name="btnImg1" src="' + path + 'images/btn_web_01.gif" alt="ウェブ予約" width=127 height=43 border=0');//	document.write('    onMouseOver="changeImg(1,1);" onMouseOut="changeImg(1,0);"></a></td>');//	document.write('  </tr>');	document.write('  <tr>');	document.write('    <td align="left">');	document.write('      <table border=0 cellpadding=0 cellspacing=0>');	document.write('        <tr>');	document.write('          <td><a href="http://www.golfdigest.co.jp/gstart/reserve/calendar/plan_calendar_417501.asp">');	document.write('          <img src="' + path + 'img/gdo_img.gif" alt="オンライン予約はこちら" border="0"></a></td>');	document.write('        </tr>');	document.write('        <tr>');	document.write('          <td><a href="http://www.yonex-cc.com/sitemap.html">');	document.write('          <img name="btnImg2" src="' + path + 'images/submenu_01.gif" alt="サイトマップ" width=128 height=18 border=0');	document.write('          onMouseOver="changeImg(2,1);" onMouseOut="changeImg(2,0);"></a></td>');	document.write('        </tr>');	document.write('        <tr>');	document.write('          <td><a href="https://secure01.red.shared-server.net/www.yonex-cc.com/inquiry.html">');	document.write('          <img name="btnImg3" src="' + path + 'images/submenu_02.gif" alt="お問い合わせ" width=128 height=16 border=0');	document.write('          onMouseOver="changeImg(3,1);" onMouseOut="changeImg(3,0);"></a></td>');	document.write('        </tr>');	document.write('        <tr>');	document.write('          <td><a href="http://www.yonex.co.jp/policy.html">');	document.write('          <img name="btnImg4" src="' + path + 'images/submenu_03.gif" alt="プライバシーポリシー" width=128 height=17 border=0');	document.write('          onMouseOver="changeImg(4,1);" onMouseOut="changeImg(4,0);"></a></td>');	document.write('        </tr>');	document.write('        <tr>');	document.write('          <td><a href="http://www.yonex-cc.com/club/access.html">');	document.write('          <img name="btnImg5" src="' + path + 'images/submenu_04.gif" alt="アクセス" width=128 height=16 border=0');	document.write('          onMouseOver="changeImg(5,1);" onMouseOut="changeImg(5,0);"></a></td>');	document.write('        </tr>');	document.write('      </table>');	document.write('    </td>');	document.write('  </tr>');	document.write('  <tr>');	document.write('    <td><font size="1" color="#999999">(C) Copyright YONEX.<br>');	document.write('    No reproduction or <br>');	document.write('    republication without <br>');	document.write('    written permission.</font><font size="1"> </font></td>');	document.write('  </tr>');	document.write('  <tr>');	document.write('    <td>');	document.write('      <p>　</p>');	document.write('      <p>　</p>');	document.write('      <p>　</p>');	document.write('      <p>　</p>');	document.write('      <p>　</p>');	document.write('      <p>　</p>');	document.write('      <p>　</p>');	document.write('      <p>　</p>');	document.write('    </td>');	document.write('  </tr>');	document.write('</table>');	document.write('<!-- web予約ここまで -->');	document.close();}