/*
=============================================

HeaderArea

=============================================
*/

//HeaderArea
function setHeaderArea(country,language,categoly) {
	document.write('<!-- ===== HeaderArea ===== -->');
	document.write('<div id="Header">');
	document.write('<!-- Logo-->');
	document.write('<h1 id="Logo"><a href="/index.html" title="IDL TOP" accesskey="0"><img src="/common/images/logo_idl.jpg" width="244" height="37" alt="IDL"></a></h1>');
	document.write('<!-- //Logo_End-->');
	/*document.write('<!-- rmv_body-->');
	setPagermv(language+"body"+categoly);
	document.write('<!-- //rmv_body_End-->');*/
	document.write('<hr>');
	document.write('<!-- Navigation Skip-->');
	setPageNavigationSkip(language+categoly);
	document.write('<!-- //Navigation Skip_End-->');
	document.write('<!-- HeaderNavi-->');
	setPageHeaderNavigation(country);
	document.write('<!-- //HeaderNavi_End-->');
	//クッキーの有効チェック
/*	if (chkCookie()) {
		//ログインチェック
		chkLogin();
	}	

	document.write(LINK_HTML);*/
	document.write('<!-- GrovalNavi-->');
	document.write('<div id="gnv">');
	document.write('<h2 class="rmv">グローバルナビゲーション</h2>');
	setPageGrovalNavigation(country+categoly);
	document.write('</div>');
	document.write('<!-- //GrovalNavi_End-->');
	document.write('');
	document.write('<div id="CountryCategory">');
	document.write('<span class="rmv">Japan</span>');
	document.write('</div>');
	document.write('');
	document.write('<!-- Category-->');
	document.write('<h2 class="rmv">カテゴリー</h2>');
	setPageCategory(categoly);
	document.write('<!-- //Category_End-->');
	document.write('</div>');
	document.write('<!-- ===== //HeaderArea_End ===== -->');
}

