<!--- hide script from old browsers

function FValidateControl(control) {
  if (control.value=="") {
    alert(control.name+": this is a required field.")
    control.focus()
    return false }
  return true }

function FSubmitValidation(form) {
if (!FValidateControl(form.name)) return false
if (!FValidateControl(form.email)) return false
   return true }

// end hiding from old browsers -->
