function Form_Validator(eshotForm)
{
 //--------------------
if (document.eshotForm.txtEmail.value == ""){
  alert("Please enter an email address")
  document.eshotForm.txtEmail.focus();
  return (false);
}
if (document.eshotForm.txtEmail.value.length > 70){
tooMuch = document.eshotForm.txtEmail.value.length - 70
alert("You have entered too many characters - Please remove " + tooMuch + " characters and resubmit")
document.eshotForm.txtEmail.focus()
return false;
}
 //--------------------
  return (true);
}
