<!--
function CheckSearch(f) {
	if (!(f.PropertyTypeC.checked || f.PropertyType2.checked || f.PropertyTypeT.checked)) {
		alert("You must select at least one property type to search.");
		return false;
	}
	if (!(f.Waterfront1.checked || f.Waterfront2.checked || f.Waterfront3.checked || f.Waterfront5.checked || f.Waterfront7.checked)) {
		alert("You must select at least one waterfront location to search.");
		return false;
	}
	if (!isWhitespace(f.FromDate.value)) {
		if (!isValidDate(f.FromDate)) {
			f.FromDate.focus();
			return false;
		}
		var dttoday = new Date();
		if (!(doDateCheck(dttoday, f.FromDate.value))){
			alert("From Date cannot be in the past.");
			f.FromDate.focus();
			return false;
		}
	}
	return true;
}
function ShowDetails(PropId) {
	document.frmResults.hPropertyId.value = PropId;
	return true;
}
//-->