<!---


//ロールオーバー
function RollOver (obj,val) {
	obj.src = val;
} 


//別ウィンドウ
function MapOpen(WO){
	NewWin=window.open("","MWindow","resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,directories=no,location=yes,status=no,width=420,height=500");
	NewWin.location.href=WO;
	NewWin.focus();
}

function BOpen(WO){
	NewWin=window.open("","MWindow","resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,directories=no,location=yes,status=no,width=620,height=460");
	NewWin.location.href=WO;
	NewWin.focus();
}

//フォトコンテスト用
function COpen(WO){
	NewWin=window.open("","MWindow","resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,directories=no,location=yes,status=no,width=790,height=1000");
	NewWin.location.href=WO;
	NewWin.focus();
}


//プルダウンジャンプ
function navi(myURL) {
	url = myURL.options[myURL.selectedIndex].value;
	if(url != "") {
	location.href = url;
	}
}

// サイドメニュー矢印
function chgimg(imgName,img){
	document.images[imgName].src = img;
}


//--->

