function chkKeywordSearch() {
	if ( trim($('rating_keyword').value) != '' && trim($('rating_keyword').value) != '請輸入關鍵字' ) {
		return true;
	}
	alert('請輸入關鍵字');
	return false;
}

function chkRatingSearch() {
	if ( trim($('hotel_city')[$('hotel_city').selectedIndex].value) == '' && 
		 trim($('use_year')[$('use_year').selectedIndex].value) == '' && 
		 trim($('use_month')[$('use_month').selectedIndex].value) == '' && 
		 trim($('price_interval')[$('price_interval').selectedIndex].value) == '' && 
		 trim($('date_type')[$('date_type').selectedIndex].value) == '' && 
		 trim($('item')[$('item').selectedIndex].value) == ''
	   ) {
	   alert('請選擇搜尋條件');
	   return false;
	}
	if ( trim($('use_month')[$('use_month').selectedIndex].value) != '' && trim($('use_year')[$('use_year').selectedIndex].value) == '' ) {
	   alert('請選擇使用年份');
	   return false;
	}
	return true;
}