/*
	ValidateTransfersSearch.js
*/
	function ValidateTransfersSearch(frmSearch)
	{
		var mandatoryFields = "";
		
		if ( trim(frmSearch.arrAirportCode.value) == "" )
			mandatoryFields += "\n        From 'Airport'";
			
		if (frmSearch.resort != null && trim(frmSearch.resort.value) == "" )
			mandatoryFields += "\n        To 'Resort'";
		
		if (frmSearch.location != null && trim(frmSearch.location.value) == "")
			mandatoryFields += "\n        To 'Location'";
			
		if (mandatoryFields != "") {
			alert("The following field(s) are mandatory:\n" + mandatoryFields);
			return false;
		}
		
		return true;
	}
