function formCadastroRegulamento(){
    parametros = "funcao=formCadastro";
    enviaPOST("php/regulamento.php",parametros,"content","content");
}

function listaRegulamento(){
    parametros = "funcao=lista";
    enviaPOST("php/regulamento.php",parametros,"content","content");
}

function editarRegulamento(cdRegistroJS){
    parametros = "funcao=editar";
    parametros += "&codigo="+cdRegistroJS;
    enviaPOST("php/regulamento.php",parametros,"content","content");    
}


function excluirRegulamento(codigoJS){
    parametros = "funcao=excluir";
    parametros += "&codigo="+codigoJS;
    
    enviaPOSTurl("php/regulamento.php",parametros,"content","content","php/resultado.php", "funcao=lista", "content","content"); 
}
function carregaRegulamentoIndex(){
    parametros = "funcao=exibePaginaInicial";
    enviaPOST("admin/php/regulamento.php",parametros,"principal","principal");
}