function validadados(){
var Form=document.formContato

if(Form.nome.value=="" || Form.nome.value.length < 4)
{
alert( "Preencha campo NOME corretamente!" );
Form.nome.focus();
return false;
}

if( Form.email.value=="" || Form.email.value.indexOf('@')==-1 || Form.email.value.indexOf('.')==-1 )
{
alert( "Preencha campo E-MAIL corretamente!" );
Form.email.focus();
return false;
}

if (Form.assunto.value=="")
{
alert( "Preencha o campo ASSUNTO!" );
Form.assunto.focus();
return false;
}

if (Form.mensagem.value=="")
{
alert( "Preencha o campo MENSAGEM!" );
Form.mensagem.focus();
return false;
}

return true;
}