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.cidade.value;
    if(bash.length<3) {
        alert("Coloque a sua Cidade");
        document.proform.cidade.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.uf.value;
    if(bash.length<3) {
        alert("Coloque o seu Estado");
        document.proform.uf.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.mensagem.value;
    if(bash.length<10) {
        alert("Escreva uma mensagem");
        document.proform.mensagem.focus();
        return false;
    }


   else{
        return true
    }

}
