function enviarBuscaEmpree(x){
    if (!x) {
        document.buscaEmpreend.action = '';
    }
    if (x == 1) {
        document.buscaEmpreend.action = 'empreendimento.php?busquei_direto_pelo_nome_do_empreendimento&setar=1';
    }
    if (x == 2) {
        document.buscaEmpreend.action = 'lista_empreendimentos.php?cliquei_no_OK_da_busca&setar=1';
    }
    document.buscaEmpreend.submit();
}



function disable(){
    document.getElementById("escolha").disabled = true;
}

function enable(){
    document.getElementById("escolha").disabled = false;
}
