function validatePointsForm() {
  var okSoFar=true  //-- Changes to false when bad field found. 
  if (document.Points.ac.value=='' && okSoFar) {
    okSoFar=false;
    alert ('Please enter a Zip Code');
    document.Points.ac.focus(); 
    }
  if (document.Points.st.value=='Please Select' && okSoFar) {
    okSoFar=false;
    alert ('Please Select a State');
    document.Points.st.focus();
    }
  if (okSoFar==true) {
    document.Points.submit();
    return true;}
  else {
    return false;}
}

