<!--to hide script contents from old browsers

var root = '/';

function BrowserCheck(){
	// Macチェック : true = macintosh, false = other os
	macCheck = navigator.userAgent.indexOf('Mac')!=-1;
	// MacMSIE5.12チェック : true = MSIE 5.12(mac), false = others
	macIE512=navigator.userAgent.indexOf('MSIE 5.12')!=-1;
	// ブラウザバージョンチェック
	//        IE4 = 1, IE5+ = 2, NN4 = 3, NN6+ = 4, others = 0
	browsVer = document.all?(document.getElementById?2:1):(document.getElementById?4 :(document.layers?3:0));
}

function getDivFromName(nm){
	if(browsVer==4 || browsVer==2) return document.getElementById(nm);
	if(browsVer==1)            return document.all(nm);
	if(browsVer==3){
		var s='';
		for(var i=1; i<arguments.length; i++)
			s+='document.layers.'+arguments[i]+'.';
		return eval(s+'document.layers.'+nm);
 	}
	return null;
}

function setDivVisibility(div,visible){
	if(browsVer==4 || browsVer==2 || browsVer==1){
		div.style.visibility=(visible)?'inherit':'hidden';
		return;
	}
	if(browsVer==3){
		div.visibility      =(visible)?'inherit':'hide';
		return;
	}
}

function setDivClip(div,top,right,bottom,left){
	if(browsVer==4 || browsVer==2 || browsVer==1){
		div.style.clip='rect('+top+'px '+right+'px '+bottom+'px '+left+'px)';
		return;
	}
	if(browsVer==3){
		div.clip.top   =top;   div.clip.right=right;
		div.clip.bottom=bottom;div.clip.left =left;
		return;
	}
}

//-------------------------------------------------------
//ポップアップ式メニュー
//
// PopMenu("レイヤーID","幅","高さ","スピード")
// PopMenu2("レイヤーID")
// MenuHide("レイヤーID")
//メニューの見出しにonMouseOverにPopMenu、onMouseOutにMenuHideをセットします。メニュー自体にはPopMenu2とMenuHideをセットします。スピードは高さが割り切れる数を入れます。大きいほど遅くなります。
//-------------------------------------------------------
function PopMenu(divname,x,y,speed){
	if ( typeof(browsVer) != "undefined" ) {
		if ( typeof(popcheck_flg) != "undefined" ) {
			if ( popcheck_flg == true ) {
				PopSizeX = x;
				PopSizeY = y;
				PopSpeed = speed;
				PopDiv=getDivFromName(divname);
				PopClip = 0;
				PopMenuTIMEID=setTimeout("PopMenuMain()",50);
			}
		}
	}
}
function PopMenu2(divname){
	PopDiv=getDivFromName(divname);
	setDivVisibility(PopDiv,true);
	setDivClip(PopDiv,0,PopSizeX,PopSizeY,0);
}
function PopMenuMain(){
	if ( typeof(browsVer) != "undefined" ) {
		if ( typeof(popcheck_flg) != "undefined" ) {
			if ( popcheck_flg == true ) {
				PopClip = PopClip + (PopSizeY / PopSpeed);
				setDivVisibility(PopDiv,true);
				setDivClip(PopDiv,0,PopSizeX,PopClip,0);
				if(PopClip >= PopSizeY){
					clearTimeout(PopMenuTIMEID);
				}else{
					PopMenuTIMEID=setTimeout("PopMenuMain()",50);
				}
			}
		}
	}
}
function MenuHide(divname){
	if ( typeof(PopMenuTIMEID) != "undefined" ) {
		if ( typeof(browsVer) != "undefined" ) {
			if ( typeof(popcheck_flg) != "undefined" ) {
				if ( popcheck_flg == true ) {
					PopDiv=getDivFromName(divname);
					setDivVisibility(PopDiv,false);
					clearInterval(PopMenuTIMEID);
				}
			}
		}
	}
}


/*CacheImage*/
if(document.images) {

	headb01off = new Image();
	headb01off.src=root+"common/imgs/header/link01.gif";
	headb01on = new Image();
	headb01on.src=root+"common/imgs/header/link01_over.gif";

	headb02off = new Image();
	headb02off.src=root+"common/imgs/header/link02.gif";
	headb02on = new Image();
	headb02on.src=root+"common/imgs/header/link02_over.gif";

	headb03off = new Image();
	headb03off.src=root+"common/imgs/header/link03.gif";
	headb03on = new Image();
	headb03on.src=root+"common/imgs/header/link03_over.gif";

	headb04off = new Image();
	headb04off.src=root+"common/imgs/header/link04.gif";
	headb04on = new Image();
	headb04on.src=root+"common/imgs/header/link04_over.gif";

	btn01off = new Image();
	btn01off.src=root+"common/imgs/nav/btn01_off.gif";
	btn01on = new Image();
	btn01on.src=root+"common/imgs/nav/btn01.gif";

	btn02off = new Image();
	btn02off.src=root+"common/imgs/nav/btn02_off.gif";
	btn02on = new Image();
	btn02on.src=root+"common/imgs/nav/btn02.gif";

	btn03off = new Image();
	btn03off.src=root+"common/imgs/nav/btn03_off.gif";
	btn03on = new Image();
	btn03on.src=root+"common/imgs/nav/btn03.gif";

	btn04off = new Image();
	btn04off.src=root+"common/imgs/nav/btn04_off.gif";
	btn04on = new Image();
	btn04on.src=root+"common/imgs/nav/btn04.gif";

}
var imgId4="";

function imgChanges(imgName,imgState) {
	wi =0;
	while( btn_check[wi] > 0 ) {
		if ( btn_check[wi] == imgName.substring(4,6) ) {
			return;
		}
		wi++;
	}
	if(document.images) {
		stringId0 = imgName.substring(0,4);
		stringId4 = imgName.substring(4,5);
		document[imgName].src = eval(imgName + imgState + ".src");
	}
}

function imgChange2(imgName,imgState) {
	wi =0;
	while( btn2_check[wi] > 0 ) {
		if ( btn2_check[wi] == imgName.substring(6,8) ) {
			return;
		}
		wi++;
		}
	if(document.images) {
		stringId0 = imgName.substring(0,4);
		stringId4 = imgName.substring(4,5);
		document[imgName].src = eval(imgName + imgState + ".src");
	}
}

var btn_check = new Array(30);
var btn2_check = new Array(30);

function staymenu(){
	for (var wi=0; wi < staymenu.arguments.length; wi++) {
		btn2_check[wi] = staymenu.arguments[wi];
		imgChange2("btn0" + staymenu.arguments[wi], "on");
	}
}



function popcheck() {
	popcheck_flg=true;
}


<!--
popupinit();
//-->

function popupinit(){
	popcheck_flg=false;
	BrowserCheck();
//	MM_preloadImages('common/imgs/nav/btn01.gif','common/imgs/nav/btn02.gif','common/imgs/nav/btn03.gif','common/imgs/nav/btn01_over.gif','common/imgs/nav/btn02_over.gif','common/imgs/nav/btn03_over.gif');
}
//-->
<!--
function MM_preloadImages() { //v3.0
	var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
	var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
	if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
	var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
	d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_nbGroup(event, grpName) { //v3.0
	var i,img,nbArr,args=MM_nbGroup.arguments;
	if (event == "init" && args.length > 2) {
		if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
			img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
			if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
			nbArr[nbArr.length] = img;
			for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
				if (!img.MM_up) img.MM_up = img.src;
				img.src = img.MM_dn = args[i+1];
				nbArr[nbArr.length] = img;
		} }
	} else if (event == "over") {
		document.MM_nbOver = nbArr = new Array();
		for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
			if (!img.MM_up) img.MM_up = img.src;
			img.src = (img.MM_dn && args[i+2]) ? args[i+2] : args[i+1];
			nbArr[nbArr.length] = img;
		}
	} else if (event == "out" ) {
		for (i=0; i < document.MM_nbOver.length; i++) {
			img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
		} else if (event == "down") {
		if ((nbArr = document[grpName]) != null)
			for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
		document[grpName] = nbArr = new Array();
		for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
			if (!img.MM_up) img.MM_up = img.src;
			img.src = img.MM_dn = args[i+1];
			nbArr[nbArr.length] = img;
	} }
}

function putHeader(toppageFlg){
		//
		//　トップページの場合トップボタンは表示しない
		//
		var headerTags = '<a name="#top"></a><!--header-->'
		+ '<img src="'+root+'common/imgs/dot_blank.gif" width="10" height="10"><br>'
		+ '<table width="727" border="0" cellpadding="0" cellspacing="0">'
		+ '<tr>'
		+ '<td width="20" rowspan="2"><img src="'+root+'common/imgs/dot_blank.gif" width="20" height="1"></td>'
		+ '<td width="351"><a href="http://www.subaru.jp/" target="_blank"><img src="'+root+'common/imgs/header/logo_subaru.gif" alt="SUBARU" width="351" height="48" border="0"></a></td>'
		+ '<td width="173" rowspan="2"><img src="'+root+'common/imgs/dot_blank.gif" width="173" height="66"></td>'
		+ '<td width="183" rowspan="2"><img src="'+root+'common/imgs/header/freedial.gif" alt="スバルファイナンスへのお問い合わせ0120-386-506" width="183" height="66" border="0"></td>'
		+ '</tr>'

		+ '<tr>'
		+ '<td>'
		+ '<table width="351" border="0" cellspacing="0" cellpadding="0">'
		+ '<tr>'

		
		headerTags += '<td width="62"><a href="'+root+'index.html" onmouseover="imgChanges(\'headb01\',\'on\');" onmouseout="imgChanges(\'headb01\',\'off\');"><img src="'+root+'common/imgs/header/link01.gif" width="62" height="18" border="0" name="headb01" id="headb01" alt="トップ"></a></td>';
		
		headerTags += '<td width="15"><img src="'+root+'common/imgs/dot_blank.gif" width="15" height="1"></td>'
		+ '<td width="92"><a href="'+root+'sitemap/index.html" onmouseover="imgChanges(\'headb02\',\'on\');" onmouseout="imgChanges(\'headb02\',\'off\');"><img src="'+root+'common/imgs/header/link02.gif" width="92" height="18" border="0" name="headb02" id="headb02" alt="サイトマップ"></a></td>'
		+ '<td width="15"><img src="'+root+'common/imgs/dot_blank.gif" width="15" height="1"></td>'
		+ '<td width="61"><a href="'+root+'link/index.html" onmouseover="imgChanges(\'headb03\',\'on\');" onmouseout="imgChanges(\'headb03\',\'off\');"><img src="'+root+'common/imgs/header/link03.gif" width="61" height="18" border="0" name="headb03" id="headb03" alt="リンク"></a></td>'
		+ '<td width="15"><img src="'+root+'common/imgs/dot_blank.gif" width="14" height="1"></td>'
		+ '<td width="85"><a href="'+root+'contact/index.html" onmouseover="imgChanges(\'headb04\',\'on\');" onmouseout="imgChanges(\'headb04\',\'off\');"><img src="'+root+'common/imgs/header/link04.gif" width="85" height="18" border="0" name="headb04" id="headb04" alt="お問い合わせ"></a></td>'
		+ '</tr>'
		+ '</table>'
		+ '</td>'
		+ '</tr>'
		+ '<tr>'
		+ '<td colspan="4" width="727" ><img src="'+root+'common/imgs/dot_blank.gif" width="727" height="6"></td>'
		+ '</tr>'
		+ '</table>'
		
		+ '<!--end of header--><!--Start Main-->'
		+ '<table width="727" border="0" cellpadding="0" cellspacing="0">'
		+ '<tr>'
		+ '<td width="20"><img src="'+root+'common/imgs/dot_blank.gif" width="20" height="1"></td>'
		+ '<td width="707">'
		+ '<table width="707" border="0" cellpadding="0" cellspacing="0">'
		+ '<tr>'
		+ '<td colspan="6"><img src="'+root+'common/imgs/nav/bg1.gif" width="707" height="6"></td>'
		+ '</tr>'
		+ '<tr>'
		+ '<td><img src="'+root+'common/imgs/dot_blank.gif" width="5" height="39"></td>'
		+ '<td width="173"><a href="'+root+'company/01/index.html" onmouseover="PopMenu(\'popup1\',173,300,1);" onmouseout="MenuHide(\'popup1\');"><img src="'+root+'common/imgs/nav/btn01_off.gif" width="173" height="39" border="0" name="btn01" id="btn01"></a></td>'
		+ '<td width="173"><a href="'+root+'business/01/index.html" onmouseover="PopMenu(\'popup2\',173,180,1);" onmouseout="MenuHide(\'popup2\');"><img src="'+root+'common/imgs/nav/btn02_off.gif" width="173" height="39" border="0" name="btn02" id="btn02"></a></td>'
		+ '<td width="173"><a href="'+root+'privacy/index.html" onmouseover="PopMenu(\'popup3\',173,180,1);" onmouseout="MenuHide(\'popup3\');"><img src="'+root+'common/imgs/nav/btn03_off.gif" width="173" height="39" border="0" name="btn03" id="btn03"></a></td>'
		+ '<td width="173"><a href="#" onmouseover="PopMenu(\'popup4\',173,180,1);" onmouseout="MenuHide(\'popup4\');"><img src="'+root+'common/imgs/nav/btn04_off.gif" width="173" height="39" border="0" name="btn04" id="btn04"></a></td>'
		+ '<td><img src="'+root+'common/imgs/nav/bg2.gif" width="10" height="39"></td>'
		+ '</tr>'
		+ '</table>'
		+ '</td>'
		+ '</tr>'
		+ '</table>'
		+ '<!--end of header-->';

	document.write(headerTags);
}

function putMenu(){

	var menuTags = '<!--POPUP 1-->'
	+'<div id="popup1">'
	+'<table border="0" cellspacing="0" cellpadding="0">'
	+'<tr>'
	+'<td><a href="'+root+'company/01/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu01\',\''+root+'common/imgs/nav/btn01_over.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu01\',\''+root+'common/imgs/nav/btn01_over.gif\',\'\',1);PopMenu2(\'popup1\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup1\');"><img src="'+root+'common/imgs/nav/btn01_over.gif" width="173" height="39" name="popup_menu01" border="0" alt="会社情報"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'company/05/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu01_05\',\''+root+'common/imgs/nav/btn01_05.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu01_05\',\''+root+'common/imgs/nav/btn01_05_over.gif\',\'\',1);PopMenu2(\'popup1\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup1\');"><img src="'+root+'common/imgs/nav/btn01_05.gif" width="173" height="28" name="popup_menu01_05" border="0" alt="ごあいさつ"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'company/01/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu01_01\',\''+root+'common/imgs/nav/btn01_01.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu01_01\',\''+root+'common/imgs/nav/btn01_01_over.gif\',\'\',1);PopMenu2(\'popup1\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup1\');"><img src="'+root+'common/imgs/nav/btn01_01.gif" width="173" height="28" name="popup_menu01_01" border="0" alt="会社概要"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'company/02/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu01_02\',\''+root+'common/imgs/nav/btn01_02.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu01_02\',\''+root+'common/imgs/nav/btn01_02_over.gif\',\'\',1);PopMenu2(\'popup1\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup1\');"><img src="'+root+'common/imgs/nav/btn01_02.gif" width="173" height="27" name="popup_menu01_02" border="0" alt="企業方針"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'company/07/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu01_07\',\''+root+'common/imgs/nav/btn01_07.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu01_07\',\''+root+'common/imgs/nav/btn01_07_over.gif\',\'\',1);PopMenu2(\'popup1\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup1\');"><img src="'+root+'common/imgs/nav/btn01_07.gif" width="173" height="27" name="popup_menu01_07" border="0" alt="決算公告"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'company/03/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu01_03\',\''+root+'common/imgs/nav/btn01_03.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu01_03\',\''+root+'common/imgs/nav/btn01_03_over.gif\',\'\',1);PopMenu2(\'popup1\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup1\');"><img src="'+root+'common/imgs/nav/btn01_03.gif" width="173" height="27" name="popup_menu01_03" border="0" alt="採用情報"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'company/04/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu01_04\',\''+root+'common/imgs/nav/btn01_04.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu01_04\',\''+root+'common/imgs/nav/btn01_04_over.gif\',\'\',1);PopMenu2(\'popup1\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup1\');"><img src="'+root+'common/imgs/nav/btn01_04.gif" width="173" height="29" name="popup_menu01_04" border="0" alt="アクセスマップ"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu01_06\',\''+root+'common/imgs/dot_blank.gif\',\'\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu01_06\',\''+root+'common/imgs/dot_blank.gif\',\'\',1);PopMenu2(\'popup1\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup1\');"><img src="'+root+'common/imgs/dot_blank.gif" width="173" height="30" border="0" name="popup_menu01_06"></a></td>'
	+'</tr>'
	+'</table>'
	+'</div>'
	+'<!--POPUP 2-->'
	+'<div id="popup2">'
	+'<table border="0" cellspacing="0" cellpadding="0">'
	+'<tr>'
	+'<td><a href="'+root+'business/01/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu02\',\''+root+'common/imgs/nav/btn02_over.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu02\',\''+root+'common/imgs/nav/btn02_over.gif\',\'\',1);PopMenu2(\'popup2\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup2\');"><img src="'+root+'common/imgs/nav/btn02_over.gif" width="173" height="39" name="popup_menu02" border="0" alt="事業紹介"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'business/01/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu02_01\',\''+root+'common/imgs/nav/btn02_01.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu02_01\',\''+root+'common/imgs/nav/btn02_01_over.gif\',\'\',1);PopMenu2(\'popup2\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup2\');"><img src="'+root+'common/imgs/nav/btn02_01.gif" width="173" height="28" name="popup_menu02_01" border="0" alt="事業概要"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'business/02/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu02_02\',\''+root+'common/imgs/nav/btn02_02.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu02_02\',\''+root+'common/imgs/nav/btn02_02_over.gif\',\'\',1);PopMenu2(\'popup2\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup2\');"><img src="'+root+'common/imgs/nav/btn02_02.gif" width="173" height="27" name="popup_menu02_02" border="0" alt="自動車クレジット・リース事業"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'business/03/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu02_03\',\''+root+'common/imgs/nav/btn02_03.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu02_03\',\''+root+'common/imgs/nav/btn02_03_over.gif\',\'\',1);PopMenu2(\'popup2\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup2\');"><img src="'+root+'common/imgs/nav/btn02_03.gif" width="173" height="27" name="popup_menu02_03" border="0" alt="機器リース事業"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'business/04/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu02_04\',\''+root+'common/imgs/nav/btn02_04.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu02_04\',\''+root+'common/imgs/nav/btn02_04_over.gif\',\'\',1);PopMenu2(\'popup2\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup2\');"><img src="'+root+'common/imgs/nav/btn02_04.gif" width="173" height="29" name="popup_menu02_04" border="0" alt="その他の金融事業"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu02_05\',\''+root+'common/imgs/dot_blank.gif\',\'\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu02_05\',\''+root+'common/imgs/dot_blank.gif\',\'\',1);PopMenu2(\'popup2\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup2\');"><img src="'+root+'common/imgs/dot_blank.gif" width="173" height="30" border="0" name="popup_menu02_05"></a></td>'
	+'</tr>'
	+'</table>'
	+'</div>'
	+'<!--POPUP 3-->'
	+'<div id="popup3">'
	+'<table border="0" cellspacing="0" cellpadding="0">'
	+'<tr>'
	+'<td><a href="'+root+'privacy/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu03\',\''+root+'common/imgs/nav/btn03_over.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu03\',\''+root+'common/imgs/nav/btn03_over.gif\',\'\',1);PopMenu2(\'popup3\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup3\');"><img src="'+root+'common/imgs/nav/btn03_over.gif" width="173" height="39" name="popup_menu03" border="0" alt="個人情報について"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'privacy/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu03_01\',\''+root+'common/imgs/nav/btn03_01.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu03_01\',\''+root+'common/imgs/nav/btn03_01_over.gif\',\'\',1);PopMenu2(\'popup3\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup3\');"><img src="'+root+'common/imgs/nav/btn03_01.gif" width="173" height="28" name="popup_menu03_01" border="0" alt="個人情報保護方針"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="'+root+'privacy/01/index.html" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu03_02\',\''+root+'common/imgs/nav/btn03_02.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu03_02\',\''+root+'common/imgs/nav/btn03_02_over.gif\',\'\',1);PopMenu2(\'popup3\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup3\');"><img src="'+root+'common/imgs/nav/btn03_02.gif" width="173" height="29" name="popup_menu03_02" border="0" alt="個人情報提供先一覧"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu03_03\',\''+root+'common/imgs/dot_blank.gif\',\'\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu03_03\',\''+root+'common/imgs/dot_blank.gif\',\'\',1);PopMenu2(\'popup3\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup3\');"><img src="'+root+'common/imgs/dot_blank.gif" width="173" height="30" border="0" name="popup_menu03_03"></a></td>'
	+'</tr>'
	+'</table>'
	+'</div>'
	+'<!--POPUP 4-->'
	+'<div id="popup4">'
	+'<table border="0" cellspacing="0" cellpadding="0">'
	+'<tr>'
	+'<td><a onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu04\',\''+root+'common/imgs/nav/btn04_over.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu04\',\''+root+'common/imgs/nav/btn04_over.gif\',\'\',1);PopMenu2(\'popup4\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup4\');"><img src="'+root+'common/imgs/nav/btn04_over.gif" width="173" height="39" name="popup_menu04" border="0" alt="よくある質問"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="http://members.subaru.jp/landc/credit/03/index.html" target="_blank" onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu04_01\',\''+root+'common/imgs/nav/btn04_01.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu04_01\',\''+root+'common/imgs/nav/btn04_01_over.gif\',\'\',1);PopMenu2(\'popup4\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup4\');"><img src="'+root+'common/imgs/nav/btn04_01.gif" width="173" height="28" name="popup_menu04_01" border="0" alt="スバルクレジット"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a href="http://members.subaru.jp/landc/lease/04/index.html" target="_blank"  onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu04_02\',\''+root+'common/imgs/nav/btn04_02.gif\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu04_02\',\''+root+'common/imgs/nav/btn04_02_over.gif\',\'\',1);PopMenu2(\'popup4\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup4\');"><img src="'+root+'common/imgs/nav/btn04_02.gif" width="173" height="29" name="popup_menu04_02" border="0" alt="スバルリース"></a></td>'
	+'</tr>'
	+'<tr>'
	+'<td><a onclick="MM_nbGroup(\'down\',\'group1\',\'popup_menu04_03\',\''+root+'common/imgs/dot_blank.gif\',\'\',1);" onmouseover="MM_nbGroup(\'over\',\'popup_menu04_03\',\''+root+'common/imgs/dot_blank.gif\',\'\',1);PopMenu2(\'popup4\');" onmouseout="MM_nbGroup(\'out\');MenuHide(\'popup4\');"><img src="'+root+'common/imgs/dot_blank.gif" width="173" height="30" border="0" name="popup_menu04_03"></a></td>'
	+'</tr>'
	+'</table>'
	+'</div>';


	document.write(menuTags);
}

// end hiding contents from old browsers  -->