
function emlValid(theForm)
{
  if (theForm.mailFromAddress.value == "")
  {
    alert("Please enter your e-mail address.");
    theForm.mailFromAddress.focus();
    return (false);
  }
  Validemail = isEmail(theForm.mailFromAddress.value)
  if (!Validemail)
  {
    alert("It appears that you have entered an invalid e-mail address.  Please check it.");
    theForm.mailFromAddress.focus();
    return (false);
  }
  return (true);
}

function clearemail() {
	if (document.eml1.mailFromAddress.value=="e-mail address?")
	{ document.eml1.mailFromAddress.value = "" }
	}

