function chooseExperience() {
	var o = document.getElementById("towndiv");
	o.style.display = "none";
}
function doSearch(searchtype, region, town) {
		if (town != "") {
			document.location = "<%=ROOT%>/search.asp?region=" + region + "&town=" + town + "&type=" + searchtype + "&countryid=<%=countryid%>";
			return;
		} else {
			document.location = "<%=ROOT%>/search.asp?region=" + region + "&type=" + searchtype + "&countryid=<%=countryid%>";
			return;
		}
}
function submitForm() {
	if (checkDates(document.searchBottom.arrivalDay, document.searchBottom.arrivalMonth, document.searchBottom.departureDay, document.searchBottom.departureMonth) == 0) {
		alert("Your Check-in is after your Check-out, please change your either Check-in or Check-out.")
		return;					
	}
	document.searchBottom.submit();
}
function submitFormQuick() {
	if (checkDates(document.searchQuick.arrivalDay, document.searchQuick.arrivalMonth, document.searchQuick.departureDay, document.searchQuick.departureMonth) == 0) {
		alert("Your Check-in is after your Check-out, please change your either Check-in or Check-out.")
		return;					
	}else if ( document.searchQuick.quickTown.selectedIndex == 0 ){
		alert("Please select a city to search for hotels.")
		return;					
	}else if ( document.searchQuick.quickTown[document.searchQuick.quickTown.selectedIndex].value == '' ){
		alert("Please select a city to search for hotels.")
		return;					
	}
	document.searchQuick.submit();
}

