﻿// JScript File

function ValidateRESearch(source, arguments) {
	if (document.forms[0].leftSide_drpREPropertyType.value + document.forms[0].leftSide_drpRECity.value + document.forms[0].leftSide_drpREBedrooms.value + document.forms[0].leftSide_drpRELivingArea.value + document.forms[0].leftSide_drpREBudget.value == 0){
		arguments.IsValid=false;
	} else {
		arguments.IsValid=true;
	}
}

function ValidateHolidaySearch(source, arguments) {
	if ( (document.forms[0].ucRightSide_drpHolidayPropertyType.value + document.forms[0].ucRightSide_drpHolidayCouncil.value + document.forms[0].ucRightSide_drpHolidayNrPersons.value == 0) && document.forms[0].ucRightSide_drpHolidayPrice.value==''){
		arguments.IsValid=false;
	} else {
		arguments.IsValid=true;
	}
}