function valida(){

	bash = new String();
	bash = document.proform.nome.value;
    if(bash.length<3) {
        alert("Informe o seu nome");
        document.proform.nome.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.dia.value;
    if(bash.length<1) {
        alert("Informe a sua data de Nascimento Corretamente");
        document.proform.dia.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.mes.value;
    if(bash.length<1) {
        alert("Informe a sua data de Nascimento Corretamente");
        document.proform.mes.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.ano.value;
    if(bash.length<1) {
        alert("Informe a sua data de Nascimento Corretamente");
        document.proform.ano.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.ddd.value;
    if(bash.length<2) {
        alert("Informe o seu DDD");
        document.proform.ddd.focus();
        return false;
    }
	bash = new String();
	bash = document.proform.telefone.value;
    if(bash.length<7) {
        alert("Informe o seu telefone");
        document.proform.telefone.focus();
        return false;
    }


	bash = new String();
	bash = document.proform.convenio.value;
    if(bash.length<1) {
        alert("Informe o seu Convênio");
        document.proform.convenio.focus();
        return false;
    }


	bash = new String();
	bash = document.proform.email.value;
    if(bash.length<6) {
        alert("Informe o seu Email");
        document.proform.email.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.remail.value;
    if(bash.length<6) {
        alert("Os Emails não conferem");
        document.proform.remail.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.exames.value;
    if(bash.length<3) {
        alert("Informe o(s) exame(s)");
        document.proform.exames.focus();
        return false;
    }


	bash = new String();
	bash = document.proform.endereco.value;
    if(bash.length<10) {
        alert("Informe o seu Endereço");
        document.proform.endereco.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.bairro.value;
    if(bash.length<2) {
        alert("Informe o seu bairro");
        document.proform.bairro.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.cep.value;
    if(bash.length<7) {
        alert("Informe o seu CEP");
        document.proform.cep.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.cidade.value;
    if(bash.length<3) {
        alert("Informe a sua cidade");
        document.proform.cidade.focus();
        return false;
    }

	bash = new String();
	bash = document.proform.estado.value;
    if(bash.length<2) {
        alert("Coloque o seu estado");
        document.proform.estado.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
    }

}