<!--
// マウスを上に置くと画像を入れ替える(画像を先に読み込む)
// 入れ替える画像
img = new Array("button/top.gif","button/top2.gif","button/rinen.gif","button/rinen2.gif","img/prifile.jpg","img/prifile2.jpg","button/toiawase.gif","button/toiawase2.gif","img/company.jpg","img/company2.jpg");
bfImg = new Array();
for(i=0; i<img.length; i++) {
  bfImg[i] = new Image();
  bfImg[i].src = img[i];
}
//-->


<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->

<!-- 
// リンクの処理開始 

function disp(url){ 

if(!window.opener || window.opener.closed){ // メインウィンドウの存在をチェック 
window.alert('メインウィンドウがありません'); // 存在しない場合は警告ダイアログを表示 
} 
else{ 
window.opener.location.href = url; // 存在する場合はページを切りかえる 
} 

} 

<!-- 
// リンクの処理終了 


// 「戻る」「進む」の処理開始 

function hist(goback){ 

if(!window.opener || window.opener.closed){ // メインウィンドウの存在をチェック 
window.alert('メインウィンドウがありません'); // 存在しない場合は警告ダイアログを表示 
} 
else if(goback == 'back'){ 
window.opener.history.back(); // 戻る 
} 
else if(goback == 'next'){ 
window.opener.history.forward(); // 進む 
} 

} 

// 「戻る」「進む」の処理終了 

// --> 
 

