function hihyouzi()
{
	window.status ='ページが表示されました';
	return true;
}
if (document.layers){
	document.captureevents(event.mouseover | event.mouseout);
}
document.onmouseover = hihyouzi;
document.onmouseout  = hihyouzi;
var	execUnload = false;
var	isfirst    = true;
window.onbeforeunload = function(event)
{
	event = event || window.event;
	if(execUnload == true){
		execUnload = false;
		return event.returnValue="現在読み込み中です。ＯＫを押して重複読み込みをいたしますと\n\nお客様のログイン情報等が失われますので\n\n「キャンセル」を押してしばらくお待ちくださいませ。";
	}
	if(isfirst == true){
		execUnload = true;
	}
};





