//headerを表示するタグをJavaScriptで書き出す関数function write_h(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="710" border="0" cellspacing="0" cellpadding="0" height="68">');	document.write('  <tr>');	document.write('    <td align="left" valign="top" width="410"><a href="http://www.yonex-cc.com/index.html" target="_top"><img src="' + path + 'images/head_logo.gif" alt="ヨネックスカントリークラブ" width="406" height="68" border="0"></a></td>');	document.write('    <td align="right" valign="middle"> ');	document.write('      <table border=0 cellpadding=0 cellspacing=0>');	document.write('        <tr>');	document.write('          <td><img src="' + path + 'images/head_home_01.gif" alt="ヨネックス" width=132 height=44></td>');	document.write('        </tr>');	document.write('        <tr>');	document.write('          <td><a href="http://www.yonex-cc.com/index.html">');	document.write('            <img name="btnImg0" src="' + path + 'images/head_home_02.gif" alt="ホーム" width=132 height=24 border=0');	document.write('            onMouseOver="changeImg(0,1);" onMouseOut="changeImg(0,0);"></a></td>');	document.write('        </tr>');	document.write('      </table>');	document.write('    </td>');	document.write('  </tr>');	document.write('</table>');	document.close();}