// JavaScript Document

	function validar(dados) {

    if(!checkVazio(dados.nome, "Nome")) return;

    if(!checkAlfa(dados.nome, "Nome")) return;

    if(!checkVazio(dados.email, "E-mail")) return;

    if(!checkEmail(dados.email)) return;

    if(!checkVazio(dados.empresa, "Instituição")) return;

    if(!checkAlfaNumerico(dados.empresa, "Instituição")) return;

	if(!checkVazio(dados.fone1, "DDD")) return;

	if(!checkNumerico(dados.fone1, "DDD")) return;

	if(!checkVazio(dados.fone2, "Telefone")) return;

	if(!checkNumerico(dados.fone2, "Telefone")) return;

if(!checkCheckBox(dados.categoriaa, dados.categoriab, dados.categoriac, dados.categoriad, dados.categoriae, dados.categoriaf))return;

if(!checkCheckBox2(dados.categoriaba, dados.categoriabb)) return;
    dados.submit();

    }
