<!---


//ロールオーバー
function RollOver (obj,val) {
	obj.src = val;
} 


//別ウィンドウ
function AOpen(WO){

	NewWin=window.open("","MWindow","menubar=yes,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;
	}
}



//--->
