// ヘッダ部分を作成する。
function makeHeader (pageId) {
	document.write('<div id="header">');
	document.write('<a name="top" />');
	document.write('<a href="http://www.bonanza-co.com">');
	document.write('<h1 class="nodisp_h">ボナンザ / BONANZA</h1>');
	document.write('</a>');
	document.write('</div>');
}

// ナビゲーション部分を作成する。
function makeNavi (pageId) {
	document.write('<div class="navi">');
	document.write('<a href="./index.html">HOME</a> | ');
	document.write('<a href="./co_prof.html">会社概要</a> | ');
	document.write('<a href="./goods.html">オリジナルグッズ通販</a> | ');
	document.write('<a href="./privacy.html">個人情報について</a> | ');
	document.write('<a href="mailto:info-f01@bonanza-co.com?subject=HPからのお問い合わせ">お問い合わせ</a>');
	document.write('</div>');
}

// フッター部分を作成する。
function makeFooter (pageId) {
	document.write('<div id="footer">');
	document.write('<div id="contact">');
	document.write('<p>株式会社 ボナンザ</p>');
	document.write('<p>550-0011 大阪市西区阿波座1-13-13</p>');
	document.write('<p>TEL:06-6538-1300</p>');
	document.write('<p>FAX:06-6531-5608</p>');
	document.write('</div>');
	document.write('<div id="copyright">');
	document.write('Copyright&copy; 2008 BONANZA Co,Ltd. All rights reserved.');
	document.write('</div>');
	document.write('</div>');
}

