<!--
function MessageValidate(theform)
{

  if (theform.Name.value == "")
  {
    alert("Please enter your name.");
    theform.Name.focus();
    return (false);
  }

  if (theform.Email.value == "")
  {
    alert("Please enter your email address.");
    theform.Email.focus();
    return (false);
  }


  if (theform.Subject.value == "")
  {
    alert("Please enter a subject title for your message.");
    theform.Subject.focus();
    return (false);
  }

  if (theform.Message.value == "")
  {
    alert("Please enter a message.");
    theform.Message.focus();
    return (false);
  }

  return (true);
}
//-->