/*
 * ヘッダー部
 * 引数: base ページのベース
 *       type (="top", ="normal")
 */
function partsHeader(base, type) {
	switch (type) {
		case "top" :
			document.write("<img height='73' src='" + base + "/image/top.gif' width='720'>");
			break;
		case "normal" :
			document.write("<table width='720' cellpadding='0' cellspacing='0' border='0'><tr>");
			document.write("<td><a href='" + base + "/index.html'><img height='61' alt='株式会社東海産業' src='" + base + "/image/top1.gif' width='314' border='0'></a></td>");
			document.write("<td><img height='61' alt='株式会社東海産業' src='" + base + "/image/top2.gif' width='406' border='0'></td>");
			document.write("</tr></table>");
			break;
	}
}

/*
 * テキストリンク
 * 引数: base ページのベース
 */
function partsTextLink(base) {
	var bar="<span class='vbar'>&nbsp;｜&nbsp;</span>";
	with (document) {
		write("<hr style='width:100%; height:1px;'>");
		write('<div id="TextLink">');
		write('<a href="' + base + '/index.html">HOME</a>');
		write(bar);
		write('<a href="' + base + '/outline.html">会社案内</a>');
		write(bar);
		write('<a href="' + base + '/se.html">NTAガラス</a>');
		write(bar);
		write('<a href="' + base + '/kirby.html">カービー</a>');
		write(bar);
		write('<a href="' + base + '/sonota.html">その他の商品</a>');
		write('</div>');
	}
}

/*
 * カテゴリメニュー
 */
function partsCategoryMenu(base) {
	var bar="<span class='vbar'>&nbsp;｜&nbsp;</span>";
	with(document){
		write("&nbsp;");
		write('<a href="' + base + '/outline.html">会社概要</a>');
		write(bar);
		write('<a href="' + base + '/goods.html">商品紹介</a>');
		write(bar);
		write('<a href="' + base + '/link.html">リンク</a>');
		write(bar);
		write('<a href="' + base + '/whatsnew.html">Topics</a>');
		write(bar);
		write('<a href="mailto:info@tokai-ind.com">お問い合わせ</a>');
	}
}

/*
 * コピーライト
 */
function partsCopyright() {
	document.write("<div id='Copyright'>COPYRIGHT (C) 2000-2011 TOKAI Industry CO,.LTD.</div>");
}

