/**
 * @author 308141
 */
//indexページヘッダー出力
function headerIndex(){
	
var header_content = '<div id = "header">';
	header_content +='<div class="logo">'
	header_content += 	'<a href="./index.html"><img alt="" src="./nttkWeb/image/clog.gif"/></a>';
	header_content += 	'<img alt="" src="./nttkWeb/image/spacer.gif"/>';
	header_content += 	'<a href="./index.html"><img alt="" src="./nttkWeb/image/nttkLog20110208.gif"/></a>';
	header_content += '</div><br><br>';
	header_content += '<p class="catch"><strong>先進のシステムを確かな技術と豊富なノウハウで</strong></p>';
	header_content += '<ul class="guide">';	
	header_content += 	'<li><a href="./nttkWeb/top/sitemap.html">サイトマップ</a></li>';
	header_content += 	'<li><a href="./nttkWeb/top/privacy_policy.html">プライバシー・ポリシー</a></li>';
	header_content += '</ul>';
	
	header_content += '<ul class="nl clearFix">';
	header_content += '	<li class="first"><a href="index.html"></a></li>';
	header_content += '	<li class="company"><a href="./nttkWeb/company/greeting.html"></a></li>';
	header_content += '	<li class="soltion"><a href="./nttkWeb/solution/solution.html"></a></li>';
	header_content += '	<li class="ISO"><a href="./nttkWeb/iso/iso9001.html"></a></li>';
	header_content += '	<li class="contact"><a href="./nttkWeb/contact/contact.html"></a></li>';
	header_content += '	<li class="recruit"><a href="./nttkWeb/recruit/recruit.html"></a></li>';
	header_content += '</ul>'
		
	header_content += '<hr class="none">';
	header_content += '</div>';
	document.write(header_content);
}
//メニューページ共通ヘッダー出力
function header(){
	
var header_content = '<div id = "header">';
	header_content +='<div class="logo">'
	header_content += 	'<a href="../../index.html"><img alt="" src="../image/clog.gif"/></a>';
	header_content += 	'<img alt="" src="../image/spacer.gif"/>';
	header_content += 	'<a href="../../index.html"><img alt="" src="../image/nttkLog20110208.gif"/></a>';
	header_content += '</div><br><br>';
	header_content += '<p class="catch"><strong>先進のシステムを確かな技術と豊富なノウハウで</strong></p>';
	header_content += '<ul class="guide">';	
	header_content += 	'<li><a href="../top/sitemap.html">サイトマップ</a></li>';
	header_content += 	'<li><a href="../top/privacy_policy.html">プライバシー・ポリシー</a></li>';
	header_content += '</ul>';
	
	header_content += '<ul class="nl clearFix">';
	header_content += '	<li class="first"><a href="../../index.html"></a></li>';
	header_content += '	<li class="company"><a href="../company/greeting.html"></a></li>';
	header_content += '	<li class="soltion"><a href="../solution/solution.html"></a></li>';
	header_content += '	<li class="ISO"><a href="../iso/iso9001.html"></a></li>';
	header_content += '	<li class="contact"><a href="../contact/contact.html"></a></li>';
	header_content += '	<li class="recruit"><a href="../recruit/recruit.html"></a></li>';
	header_content += '</ul>'
		
	header_content += '<hr class="none">';
	header_content += '</div>';
	document.write(header_content);
}
//ページ共通フッター出力
function footer(){
	
var footer_content = '<div id ="footer">';
	footer_content += '<address>';
	footer_content += 'Copyright &copy; 1984-2012 NTT SYSTEM DEVELOPMENT Co.,LTD. All Right Reserved';
	footer_content += '</address>';	
	footer_content += '</div>';
	document.write(footer_content);
}




