
<!--
function Form_Validator(theForm)
{

  if (theForm.email2.value == "" ||
      theForm.email2.value.indexOf('@', 0) == -1)
  {
    alert("Por favor, digite um e-mail válido.");
    theForm.email2.focus();
    return (false);
  }

  return (true);
}

//-->