function ValidaContato(theForm)
{
  if (theForm.Nome.value == "")
  {
    alert("Por favor digite seu nome");
    theForm.Nome.focus();
    return (false);
  }

  if (theForm.Email.value == "")
  {
    alert("Por favor digite seu Email");
    theForm.Email.focus();
    return (false);
  }

  return (true);
}
