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

