function write_igkTopMenu(strDirectory){

  if(strDirectory == undefined)strDirectory = '..';

	var txtHTML = '			<tr>\n'
	+ '				<td colspan="10">\n'
	+ '					<table style="width:100%;text-align:center;">\n'
	+ '						<tr>\n'
	+ '							<td>\n'
	+ '									<b><a title="TOP" href="' + strDirectory + '/" target="_self">TOP</a></b></td>\n'
	+ '							<td>\n'
	+ '									<a title="ご挨拶" href="' + strDirectory + '/AISATSU/index.html" target="_self">ご挨拶</a></td>\n'
	+ '							<td>\n'
	+ '									<a title="会社概要" href="' + strDirectory + '/GAIYOU/index.html" target="_self">会社概要</a></td>\n'
	+ '							<td>\n'
	+ '									<a title="ISMS" href="' + strDirectory + '/ISMS.html" target="_self">取得認証</a></td>\n'
	+ '							<td>\n'
	+ '									<a title="リクルート" href="' + strDirectory + '/RECRUIT/index.php" target="_self">リクルート</a></td>\n'
	+ '						</tr>\n'
	+ '					</table>\n'
	+ '				</td>\n'
	+ '			</tr>\n'
	+ '			<tr>\n'
	+ '				<td colspan="10">\n'
	+ '					<table style="width:100%;text-align:center;">\n'
	+ '						<tr>\n'
	+ '							<td ><b><a title="OF" href="' + strDirectory + '/OF/index.html" target="_self">業務委託 事業部</a></b></td>\n'
	+ '							<td ><b><a title="BS" href="' + strDirectory + '/BS/index.html" target="_self">ビジネスサポート 事業部</a></b></td>\n'
	+ '							<td ><b><a title="CS" href="' + strDirectory + '/CS/index.html" target="_self">コンシューマサービス 関連事業</a></b></td>\n'
	+ '						</tr>\n'
	+ '					</table>\n'
	+ '				</td>\n'
	+ '			</tr>\n';
  document.write(txtHTML);
 }
