<!--
function fSubmit()
{
if (document.frmCadastro.Nome.value == '')
{ 
document.getElementById("camada1").innerHTML="Por favor, preencha o campo nome";
return false;
}
if (document.frmCadastro.email.value == '')
{ 
document.getElementById("camada1").innerHTML="Por favor, preencha o campo e-mail";
return false;
}
if (document.frmCadastro.email.value == "") {
document.getElementById("camada1").innerHTML="O e-mail informado não está correto";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
} else {
prim = document.frmCadastro.email.value.indexOf("@")
if(prim < 2) {
document.getElementById("camada1").innerHTML="O e-mail informado não está correto";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("@",prim + 1) != -1) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf(".") < 1) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf(" ") != -1) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("zipmeil.com") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("hotmeil.com") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf(".@") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("@.") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf(".com.br.") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("/") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("[") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("]") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("(") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf(")") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if(document.frmCadastro.email.value.indexOf("..") > 0) {
document.getElementById("camada1").innerHTML="Informe o seu e-mail corretamente";
frmCadastro.email.focus();
frmCadastro.email.select();
return false;
}
if (document.frmCadastro.Telefone.value == '')
{ 
document.getElementById("camada1").innerHTML="Informe seu telefone corretamente";
return false;
}
if (document.frmCadastro.Mensagem.value == '')
{ 
document.getElementById("camada1").innerHTML="Por favor, digite sua mensagem";
return false;
}
}
document.frmCadastro.submit();
return false;
}
--> 