//----------------------------
// フッターメニュー表示
//----------------------------
// TOPページ用
function footer_menu_top(){ 
document.write('			<div class="footerMenu">');
document.write('			<a href="policy/privacy.html" title="個人情報保護方針">個人情報保護方針</a>｜');
document.write('			<a href="policy/notice.html" title="ご利用に当たっての注意事項">ご利用に当たっての注意事項</a>｜');
document.write('			<a href="sitemap/index.html" title="サイトマップ">サイトマップ</a>｜');
document.write('			</div>');
}
// 中面ページ 1階層目用 共通
function footer_menu_common_01(){
document.write('			<div class="footerMenu">');
document.write('			<a href="../index.html" title="JFE鋼板ホーム">JFE鋼板ホーム</a>｜');
document.write('			<a href="../policy/privacy.html" title="個人情報保護方針">個人情報保護方針</a>｜');
document.write('			<a href="../policy/notice.html" title="ご利用に当たっての注意事項">ご利用に当たっての注意事項</a>｜');
document.write('			<a href="../sitemap/index.html" title="サイトマップ">サイトマップ</a>｜');
document.write('			</div>');
}
// 中面ページ 2階層目用 共通
function footer_menu_common_02(){
document.write('			<div class="footerMenu">');
document.write('			<a href="../../index.html" title="JFE鋼板ホーム">JFE鋼板ホーム</a>｜');
document.write('			<a href="../../policy/privacy.html" title="個人情報保護方針">個人情報保護方針</a>｜');
document.write('			<a href="../../policy/notice.html" title="ご利用に当たっての注意事項">ご利用に当たっての注意事項</a>｜');
document.write('			<a href="../../sitemap/index.html" title="サイトマップ">サイトマップ</a>｜');
document.write('			</div>');
}
