<!-- Public_Home_validateandsubmit.js -->
<!-- RESTAINO -->

function noEntry(objname) {
  var mt=objname.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")) {
    return false;
  }
  else {
    return true;
  }
}

function validateandsubmit( f ) {
  var count = 0;
  if ((noEntry(document.form1.L_MLS_NUMBER) == true) || (noEntry(document.form1.StreetName) == true))
  {
    count++;
  }
  if ( count < 1  )
  {
    alert("You must enter either a Street Name or MLS Number to continue.\r\n");
    return false;
  }
}