<!---


//ロールオーバー
function RollOver (obj,val) {
	obj.src = val;
} 


//別ウィンドウ
function AOpen(WO){
	NewWin=window.open("","MWindow","toolbar=no,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,width=540,height=538");
	NewWin.location.href=WO;
	NewWin.focus();
}

function BOpen(WO){

	NewWin=window.open("","NWindow","toolbar=no,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,width=650,height=500");
	NewWin.location.href=WO;
	NewWin.focus();
}

//プルダウンジャンプ
function navi(myURL) {
	url = myURL.options[myURL.selectedIndex].value;
	if(url != "") {
	location.href = url;
	}
}



//--->
