function valida_contato(){

	bash = new String();
	bash = document.contatoform.nome.value;
    if(bash.length<3) {
        alert("Erro: (nome / Name)");
        document.contatoform.nome.focus();
        return false;
    }


	bash = new String();
	bash = document.contatoform.email.value;
    if(bash.length<6) {
        alert("Erro: (Email)");
        document.contatoform.email.focus();
        return false;
    }

	bash = new String();
	bash = document.contatoform.endereco.value;
    if(bash.length<10) {
        alert("Erro: (Endereco / Address)");
        document.contatoform.endereco.focus();
        return false;
    }

	bash = new String();
	bash = document.contatoform.telefone.value;
    if(bash.length<7) {
        alert("Erro: (Telefone / Phone)");
        document.contatoform.telefone.focus();
        return false;
    }


	bash = new String();
	bash = document.contatoform.cidade.value;
    if(bash.length<3) {
        alert("Erro: (Cidade / City)");
        document.contatoform.cidade.focus();
        return false;
    }

	bash = new String();
	bash = document.contatoform.estado.value;
    if(bash.length<3) {
        alert("Erro: (Estado / State)");
        document.contatoform.estado.focus();
        return false;
    }

	bash = new String();
	bash = document.contatoform.pais.value;
    if(bash.length<3) {
        alert("Erro: (Pais / Country)");
        document.contatoform.pais.focus();
        return false;
    }


	bash = new String();
	bash = document.contatoform.assunto.value;
    if(bash.length<3) {
        alert("Erro: (Assunto / Subject)");
        document.contatoform.assunto.focus();
        return false;
    }


	bash = new String();
	bash = document.contatoform.mensagem.value;
    if(bash.length<10) {
        alert("Erro: (Mensagem / Message)");
        document.contatoform.mensagem.focus();
        return false;
    }


   else{
        return true
    }

}