﻿/* -----------------------------------------------
	宿泊予約検索 スクリプト
----------------------------------------------- */

function planSearch() {
	
	fObj = document.PlanSearch;
	co_id = "";
	
	urlStr = "http://www2.e-concierge.net/reserve/plan_search.php?htl_id=33";
	
	
	//index = fObj.category_id.selectedIndex;
//	category = fObj.category_id.options[index].value;
	
	cateStr = "&co_id=&category_id=" + fObj.category_id.value + "&category_id2=" + fObj.category_id2.value + "&category_id3=" + fObj.category_id3.value + "&select_room=1&select_stay=1";
	
	priceStr = "";
	// 料金検索　下限
	if(fObj.minPrice.value > 0) {
		priceStr = priceStr + "&minPrice=" + fObj.minPrice.value;
	}
	
	// 料金検索　上限
	if(fObj.maxPrice.value > 0) {
		priceStr = priceStr + "&maxPrice=" + fObj.maxPrice.value;
	}
	
	
	ym = fObj.YearMonth.value;
	// 年
	year = ym.substring(0, 4);
	
	// 月
	month	= ym.substring(5, 7);
	
	// 宿泊日指定あり
	dayStr = "&mode=refine" + "&year=" + year + "&month=" + month + "&days=" + fObj.Day.value;
	
	url = urlStr + cateStr + priceStr + dayStr;
	
	window.open(url);
	
}

