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

// 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.Email.isEmail = true;
  f.Phone.optional = true;    
  f.QC.isEmpty = true;
  var preCheck;
  return validateForm(f, preCheck);
}
