/**
 * 部屋一覧選択ボタンを押されたとき
 */
function toRoomList(){
	//alert("in toRoomList");
	// アプリケーション指定
	document.ResvInput1.appId.value="ResvInput1toViewApp";
	// 次画面指定
	document.ResvInput1.nextDispId.value="ResvRoomViewJS.jsp";
	// サンルートクラブ会員の値を移動
	document.ResvInput1.Club.value = document.ResvInput1.SunClub.value;	
	document.ResvInput1.DispFlg.value="";
	document.ResvInput1.action="http://www.sunroute.jp/ReceptSV";

	sendSubmit();
}
/**
 * ダイレクト予約(部屋自動検索)が押されたとき
 */
function autoSearch(){
	//alert("in autoSearch");
	// アプリケーション指定
	document.ResvInput1.appId.value="ReservationSV";
	// 次画面指定
	document.ResvInput1.nextDispId.value="ResvLoginJS.jsp";
	document.ResvInput1.DispFlg.value="Y";
	document.ResvInput1.action="http://www.sunroute.jp/ReservationSV";

	sendSubmit();
}

/**
 * 送信処理
 */
function sendSubmit() {
	// チェックイン日をhiddenにyyyy-MM-dd形式でまとめる
	number = document.ResvInput1.year.selectedIndex;
	document.ResvInput1.CheckIn.value=document.ResvInput1.year.options[number].value;
	document.ResvInput1.CheckIn.value+="-";
	number = document.ResvInput1.month.selectedIndex;
	document.ResvInput1.CheckIn.value+=document.ResvInput1.month.options[number].value;
	number = document.ResvInput1.day.selectedIndex;
	document.ResvInput1.CheckIn.value+="-";
	document.ResvInput1.CheckIn.value+=document.ResvInput1.day.options[number].value;

	// 実行	
	document.ResvInput1.submit();
}
 
