// JavaScript Document
//「''」の間にhtmlを記述していく。このファイル内でjsを使う場合、左右の「'」を除いた内部jsの「'」の直前に「\」を追加すること。


var subdir = "";
if (location.pathname.indexOf("/obishin") == 0){
        subdir = "/obishin";
}

if (location.pathname.indexOf("/cgi-bin/") == 0){
        if (location.host.indexOf("www.obishin.co.jp") == 0){
                subdir = "";
        }else{
                subdir = "/obishin";
        }
}


cntstr  = '<ul>';
cntstr += '<li class="lineL"><a href="' + subdir + '/financepolicy.html">金融商品に係る勧誘方針</a></li>';
cntstr += '<li><a href="' + subdir + '/recruitment.html">保険募集方針</a></li>';
cntstr += '<li><a href="' + subdir + '/payoff/payoff.html">預金保険制度について</a></li>';
cntstr += '<li><a href="' + subdir + '/privacy/privacy.html">プライバシーポリシー</a></li>';
cntstr += '<li><a href="' + subdir + '/protection/protection.html">個人情報の取扱い</a></li>';
cntstr += '<li><a href="' + subdir + '/benefitconf/benefitconf.pdf" target="_blank">利益相反管理方針の概要</a>';
cntstr += '<img src="' + subdir + '/common/images/icon_pdfSSS.gif" alt="PDFファイル" width="13" height="11" class="vmid" /></li>';

cntstr += '</ul>';
cntstr += '<ul>';


cntstr += '<li><a href="' + subdir + '/antisocial.html">反社会的勢力に対する基本方針</a></li>';
cntstr += '<li><a href="' + subdir + '/aboutsite.html">このサイトについて</a></li>';
cntstr += '</ul>';

document.open();
document.write(cntstr);
document.close;
