var nextpage=false;

function validateform(sId,sKey) {
	var noErrors = true;
	var firstError = false;
	//alert(document.searchForm.holidaytype.value);
	if (document.searchForm.holidaytype.value == "0"){
		alert("Vänligen välj typ av vistelse.");
		noErrors = false;
	}
	if (document.searchForm.holidayproduct){
		if (document.searchForm.holidayproduct.value == "0"){
			alert("Vänligen välj en produkt");
			noErrors = false;
		}
	}
	
	if (document.searchForm.arrmonth.value == document.searchForm.arrmonth.value && document.searchForm.arrday.value == document.searchForm.depday.value && document.searchForm.holidaytype.value!=110 && document.searchForm.holidaytype.value!=112 && document.searchForm.holidaytype.value!=4015 && document.searchForm.holidaytype.value!=4014){

			alert("Ankomst och avresa kan inte vara på samma dag.");
			noErrors = false;
	}
	if (noErrors && nextpage){
		document.getElementById('pleasewait').style.display='inline';
		document.getElementById('page').style.display='none';
		document.searchForm.action='/hotel_soegeresultat/?sId='+sId+'&sKey='+sKey;
	}
	nextpage=false;
	return noErrors;
}	


