function valida(){
bash = new String();
bash = document.proform.nome.value;
if(bash.length<3) {
alert("Coloque o seu nome");
document.proform.nome.focus();
return false;
}
bash = new String();
bash = document.proform.email.value;
if(bash.length<5) {
alert("Coloque o seu Email");
document.proform.email.focus();
return false;
}
bash = new String();
bash = document.proform.telefone.value;
if(bash.length<7) {
alert("Coloque o seu Telefone");
document.proform.telefone.focus();
return false;
}
bash = new String();
bash = document.proform.assunto.value;
if(bash.length<5) {
alert("Coloque o Assunto");
document.proform.assunto.focus();
return false;
}
bash = new String();
bash = document.proform.msg.value;
if(bash.length<10) {
alert("Escreva uma mensagem");
document.proform.msg.focus();
return false;
}
else{
return true
}
}
