<!--
//**********************************************************************
// SUGAMO：ContentsNavi
//
// 2005.10.28 Renewal
//**********************************************************************
// 変数：cOnxxx
// 関数：com_xxx
//**********************************************************************


//--------------------------------------------------
// SET [ Server ]
//--------------------------------------------------

var sgSv = 0;
var cOnRootPath = '/';                         //Document Root

if( sgSv == 0 )     { cOnRootPath = "http://" + document.domain + "/"; }
else if( sgSv == 1 ){ cOnRootPath = "http://www.moak1.com/sugamo/"; }

var cOnImgPath = cOnRootPath + 'common/img/';  //Image Path

//---------------------------------------------
// Document Write
//---------------------------------------------

with( document ){
	write('<div id="okyaku01"><a href="javascript:void(0);" onclick="open_popup(\'' + cOnRootPath + 'sitemap/kojin.html\',\'CONT\');"><img src="' + cOnImgPath + 'com_btn01.gif" width="248" height="33" alt="個人のお客様"></a></div>');
	write('<div id="okyaku02"><a href="javascript:void(0);" onclick="open_popup(\'' + cOnRootPath + 'sitemap/hojin.html\',\'CONT\');"><img src="' + cOnImgPath + 'com_btn02.gif" width="248" height="33" alt="法人・事業主のお客様"></a></div>');
	write('<br class="clear">');
}


//---------------------------------------------
// Image Loading
//---------------------------------------------
ImgArys = new Array(
"com_btn01.gif",
"com_btn02.gif"
);

ImgLoad = new Array();
for( var i = 0; i < ImgArys.length; i++ ){
	ImgLoad[i] = new Image();   ImgLoad[i].src = cOnImgPath + ImgArys[i];
	//document.write("<img src='" + ImgLoad[i].src + "'><br>");
}


//**********************************************************************
-->