// JavaScript Document
// Validação do formulário de Currículos
function Validator(theForm)
{
  if (theForm.nome.value == "")
  {
    alert("Por favor! Informe seu nome.");
    theForm.nome.focus();
    return (false);
  }
  if (theForm.email.value == "")
  {
    alert("Por favor! Informe seu nome.");
    theForm.email.focus();
    return (false);
  }
  if (theForm.emailTexto.value == "")
  {
    alert("Por favor! Escreva sua mensagem.");
    theForm.emailTexto.focus();
    return (false);
  }
}
