<!--
// _WriteDocCopyright : Copyright部の表示
//
//	typek : M	size=-1
//	typek : L	size=0
//		All rights reserved, Copyright(C) 2002-2007 工房 藤國
//
//  Update 2003/03/15	"-2003"追加
//
function _WriteDocCopyright( typek ) 
{
	document.write("<FONT ");
	if( typek == "L" )
		document.write(" ");
	else
		document.write("size='-1'");
	document.write(">");
	document.write("All rights reserved,");
	document.write(" Copyright(C) 2002-2008");
	document.write("　工房 藤國");
	document.write("</FONT>");
}
//-->

<!--
// _WriteDocMenu : メニューの表示
//
//	typep : 現在表示中のページ名
//
function _WriteDocMenu( typep ) 
{
	if( typep == "index" )
		document.write("<FONT color='#ff0000'>Home</FONT>　");
	else
		document.write("<A href='index.html' target='_self'>Home</A>　");

	if( typep == "item01" )
		document.write("<FONT color='#ff0000'>商品ご案内</FONT>　");
	else
		document.write("<A href='item01.htm' target='_self'>商品ご案内</A>　");

	if( typep == "item02" )
		document.write("<FONT color='#ff0000'>特注備品ご案内</FONT><BR>");
	else
		document.write("<A href='item02.htm' target='_self'>特注備品ご案内</A><BR>");

	if( typep == "service" )
		document.write("<FONT color='#ff0000'>お届けについて／ご使用上の注意</FONT>　");
	else
		document.write("<A href='service.htm' target='_self'>お届けについて／ご使用上の注意</A>　");

	if( typep == "order" )
		document.write("<FONT color='#ff0000'>ご注文／お問い合わせ</FONT><BR>");
	else
		document.write("<A href='order.htm' target='_self'>ご注文／お問い合わせ</A><BR>");

	if( typep == "event01" )
		document.write("<FONT color='#ff0000'>催事</FONT>　");
	else
		document.write("<A href='event01.htm' target='_self'>催事</A>　");

	if( typep == "quality01" )
		document.write("<FONT color='#ff0000'>囲炉裏とは</FONT>　");
	else
		document.write("<A href='quality01.htm' target='_self'>囲炉裏とは</A>　");

	if( typep == "link" )
		document.write("<FONT color='#ff0000'>Ｌｉｎｋ</FONT><BR>");
	else
		document.write("<A href='link.htm' target='_self'>Ｌｉｎｋ</A><BR>");
}
//-->


