// JavaScript Document
function jump_detail(hotelCode){
	    window.document.vaca.HotelCode.value = hotelCode;
	    window.document.vaca.action = "http://www.sunroute.jp/VacantRoomInqSVE";
	    window.document.vaca.method = "POST";
	    window.document.vaca.target="_blank";
	    window.document.vaca.submit();
}
function jump_detail2(hotelCode){
	    window.document.resv.HotelCode.value = hotelCode;
	    window.document.resv.action = "http://www.sunroute.jp/ReservationSVE";
	    window.document.resv.method = "POST";
	    window.document.resv.target="_blank";
	    window.document.resv.submit();
}
function jump_detail3(hotelCode){
	    window.document.conf.HotelCode.value = hotelCode;
	    window.document.conf.action = "http://www.sunroute.jp/ResvConfirmLoginHLE.html";
	    window.document.conf.method = "POST";
	    window.document.conf.target="_blank";
	    window.document.conf.submit();
}
