//-----------------------------------------------------------------------------
// 大曲仙北広域市町村圏組合ホームページ JavaScript
//
// All Rights Reserved, Copyright(C)2005, Itoda Computer Ltd.
//-----------------------------------------------------------------------------

//-----------------------------------------------------------------------------
// 画面帯部分 コンボボックスを使用しての画面遷移
//-----------------------------------------------------------------------------
function dispFoward(){
	var action = "";
	action = form.disp.value;
	if(action != "#"){
		top.location = action;
	}
}

function Search(){
	var action = "http://www.google.co.jp/search";
	form.method = "GET";
	form.target = "_top";
	form.action = action;
	form.submit();
}