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ælg venligst en type.");
		noErrors = false;
	}
	if (document.searchForm.holidayproduct){
		if (document.searchForm.holidayproduct.value == "0"){
			alert("Vælg venligst et produkt.");
			noErrors = false;
		}
	}
	if (document.searchForm.arrmonth && 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){
			alert("Ankomst og afrejse dag må ikke være samme dag.");
			noErrors = false;
	}

	if (noErrors && nextpage){
		// document.getElementById('pleasewait').style.display='inline';
		// document.getElementById('page').style.display='none';
		
		if (differentResultPage) {
			document.searchForm.action = differentResultPage + '&sId='+sId+'&sKey='+sKey;
		}
		else {
			document.searchForm.action='/hotel_soegeresultat/?sId='+sId+'&sKey='+sKey;
		}
	}
	nextpage=false;
	return noErrors;
}	

