<!--
function locate_selected_page(mode){
	if(mode=='term'){
		url='http://reserve.4travel.jp/overseas/tour/term/' + document.search_menu.term.options[document.search_menu.term.selectedIndex].value;
		location.href=url;
	}
	if(mode=='budget'){
		url='http://reserve.4travel.jp/overseas/tour/budget/' + document.search_menu.budget.options[document.search_menu.budget.selectedIndex].value;
		location.href=url;
	}
	if(mode=='area'){
		url='http://reserve.4travel.jp/overseas/tour/area/' + document.search_menu.area.options[document.search_menu.area.selectedIndex].value;
		location.href=url;
	}	
	if(mode=='theme'){
		url='http://reserve.4travel.jp/overseas/tour/theme/' + document.search_menu.theme.options[document.search_menu.theme.selectedIndex].value;
		location.href=url;
	}	
	if(mode=='air_area'){
		url='http://reserve.4travel.jp/overseas/airticket/area/' + document.search_menu.air_area.options[document.search_menu.air_area.selectedIndex].value;
		location.href=url;
	}	
	if(mode=='air_carrier'){
		url='http://reserve.4travel.jp/overseas/airticket/airline/' + document.search_menu.air_carrier.options[document.search_menu.air_carrier.selectedIndex].value + "/";
		location.href=url;
	}
	if(mode=='dmhotel_area'){
		url='http://reserve.4travel.jp/domestic/hotel/area/' + document.search_menu.dmhotel_area.options[document.search_menu.dmhotel_area.selectedIndex].value + "/";
		location.href=url;
	}
	if(mode=='dmhotel_spot'){
		url='http://reserve.4travel.jp/domestic/hotel/spot/' + document.search_menu.dmhotel_spot.options[document.search_menu.dmhotel_spot.selectedIndex].value + "/";
		location.href=url;
	}
}
-->

