// JavaScript Document
function jump_detail(hotelCode){
	    window.document.vaca.HotelCode.value = hotelCode;
	    window.document.vaca.action = "http://www.sunroute.jp/VacantRoomInqSV";
	    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/ReservationSV";
	    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/ResvConfirmLoginJS.jsp";
	    window.document.conf.method = "POST";
	    window.document.conf.target="_blank";
	    window.document.conf.submit();
}
function jump(code,droom,roomType,dsmoke,smoke,dpac,pac) {
        document.plan.PlanCode.value = code;
        document.plan.DRoomType.value = droom;
        document.plan.RoomType.value = roomType;
        document.plan.DSmoke.value = dsmoke;
        document.plan.Smoking.value = smoke;
        document.plan.DPac.value = dpac;
        document.plan.Pac.value = pac;
        document.plan.target = "_top";
		document.plan.action = "http://www.sunroute.jp/ReservationSV";
        document.plan.submit();
}
function jump_vacant(code,droom,roomType,dsmoke,smoke,dpac,pac,pfile){
        document.plan.PlanCode.value = code;
        document.plan.DRoomType.value = droom;
        document.plan.RoomType.value = roomType;
        document.plan.DSmoke.value = dsmoke;
        document.plan.Smoking.value = smoke;
        document.plan.DPac.value = dpac;
        document.plan.Pac.value = pac;
        document.plan.PFile.value = pfile;
        document.plan.target = "_self";
        document.plan.action = "http://www.sunroute.jp/VacantRoomInqSV";
        document.plan.submit();
}