<!-- SEARCH_validateAndSubmit js -->
<!-- Updated: 11/08/2004 by CJG -->

function validateAndSubmit() {
  var count = 0;
  if (document.form1.Listing_Price_Low.value.length == 0) {
    count++;
  }
  if (document.form1.Listing_Price_High.value.length == 0) {
    count++;
  }
  if (count > 1) {
    alert ("You Must select a Price Range:\r\n");
    document.form1.Listing_Price_Low.focus();
    return false;
  }
  return true;
}