
function write_header(path){
	var strt = '<header>';
	strt += '<h1><a href="' + path + 'index.html"><img src="' + path + 'common/img/logo.jpg" alt="カゾフ ジャパン株式会社 [KAZOV JAPAN Co.,Ltd]"></a></h1>';
	strt += '<ul class="header">';
	strt += '<li class="noactive">NEWS</li>';
	strt += '<li><a href="' + path + 'since2009/index.html">SINCE2009</a></li>';
	strt += '<li><a href="' + path + 'showcase/web/index.html">SHOWCASE</a></li>';
	strt += '<li class="cat-contact"><a href="' + path + 'contact/index.html">CONTACT</a></li>';
	strt += '</ul>';
	strt += '</header>';
	document.write(strt);
}


function write_footer(path){
	var strth = '<footer>';
	strth += '<div class="clearfix">';
	strth += '<a href="' + path + 'since2009/index.html"><img src="' + path + 'common/img/access_btn.jpg" alt="ACCESS" class="accessBtn" ></a>';
	strth += '<address>カゾフ ジャパン株式会社 [KAZOV JAPAN Co.,Ltd]<br>〒151-0051 東京都渋谷区千駄ヶ谷3-52-5 #501　<span>TEL:03-6804-3750</span>　<span>FAX:03-3478-3166</span></address>';
	strth += '<p class="copyright">Copyright (C) KAZOV JAPAN Co., LTD All Rights Reserved.</p>';
	strth += '</div>';
	strth += '</footer>';
	document.write(strth);
}

