<!--
function cmdEnviar_onclick() {
	
	tudoOk = true;
	
	if (document.frmForm.txtNome.value == "")
	   {
	   tudoOk = false;
	   alert("Seu nome não foi informado");
	   document.frmForm.txtNome.focus();
	   }
	   
	else {
	
	   if (document.frmForm.txtEmail1.value.indexOf("@") <= 0)
	      {
	      tudoOk = false;
	      alert("O seu Endereço Email não foi informado corretamente");
	      document.frmForm.txtEmail1.focus();
	      }

	      else {
	         if (document.frmForm.txtEmail1.value.substr(document.frmForm.txtEmail1.value.indexOf("@")).indexOf(".") < 2)
	            {
				tudoOk = false;
				alert("O seu Endereço Email não foi informado corretamente");
				document.frmForm.txtEmail1.focus();
				}
			 else {
				  if (document.frmForm.txtEmail2.value.indexOf("@") <= 0)
					 {
					 tudoOk = false;
					 alert("O Endereço Email de seu amigo não foi informado corretamente");
					 document.frmForm.txtEmail2.focus();
					 }

				  else {
				       if (document.frmForm.txtEmail2.value.substr(document.frmForm.txtEmail2.value.indexOf("@")).indexOf(".") < 2)
						  {
						  tudoOk = false;
						  alert("O Endereço Email de seu amigo não foi informado corretamente");
						  document.frmForm.txtEmail2.focus();
						  }
			      }
		     }
	      }
	}
	
	if (tudoOk == true) {
       document.frmForm.action="asp/email/MEM_Email.asp";
	   document.frmForm.submit();
       return true;
       }
}
-->
