// ||||||||||||||||||||||||||||||||||||||||||||||||||
// --------------------------------------------------
// ||||||||||||||||||||||||||||||||||||||||||||||||||

// All of the previous JavaScript is coded to process
// any form and should be kept in an external file if
// multiple forms are being processed.

// This function configures the previous
// form validation code for this form.
function configureValidation(f){
  f.firstname.isEmpty = true;
  f.lastname.isEmpty = true;
  f.email.isEmail = true;         
  f.phone.optional = true;
  f.yourvanityplate.isEmpty = true;
  f.stateissued.isEmpty = true;
  f.carmake.isEmpty = true;         
  f.carmodel.isEmpty = true;
  f.tellus.isEmpty = true;         
  var preCheck;
  return validateForm(f, preCheck);
}
