function emailForm_validator(theForm){
  if (theForm.name.value == ""){
    alert('Please enter a value for the "name" field.');
    theForm.name.focus();
    return (false);
  }
  if (theForm.name.value.length < 2){
    alert('Please enter at least 2 characters in the "name" field.');
    theForm.name.focus();
	theForm.name.error();
    return (false);
  }
  if (theForm.request.value == ""){
    alert('Please enter a value for the "Prayer Request" field.');
    theForm.request.focus();
    return (false);
  }
  if (theForm.request.value.length < 10){
    alert('Please enter at least 10 characters in the "Prayer Request" field.');
    theForm.request.focus();
    return (false);
  }
  if (theForm.request.value.length > 845){
    alert('Please enter at most 845 characters in the "Prayer Request" field.');
    theForm.request.focus();
    return (false);
  }
  return (true);
}