function goComando(objComando,id) {
    id = 'id='+id;
    var back = "&htmscrollback="+document.body.scrollTop;
    var operacao = objComando.options[objComando.selectedIndex].value;
    var operacao_label = objComando.options[objComando.selectedIndex].text;
    objComando.selectedIndex = 0;
    if (operacao == 'resp') {
        window.location.href = "manu.php?modo=resp&" + id + back;;
    }
    if (operacao == 'det') {
        window.location.href = "manu.php?modo=det&" + id + back;;
    } else if (operacao == 'inc') {
        window.location.href = "manu.php?modo=inc" + back;;
    } else if (operacao == 'alt') {
        window.location.href = "manu.php?modo=alt&" + id + back;;
    } else if (operacao == 'exc') {
        window.location.href = "manu.php?modo=exc&" + id + back;;
    } else if (operacao == 'ger') {
        window.location.href = "manu.php?modo=ger&" + id + back;;
    } else if (operacao == 'atv') {
        window.location.href = "manu.php?modo=atv&" + id + back;;
    } else if (operacao == 'des') {
        window.location.href = "manu.php?modo=des&" + id + back;;
    } else if (operacao == 'pub') {
        window.location.href = "manu.php?modo=pub&" + id + back;;
    } else if (operacao == 'despub') {
        window.location.href = "manu.php?modo=despub&" + id + back;;
    }
    return false;
}
function enviar(){
    /*
    if(document.getElementById("iGrupo").value == "" || 
       (document.getElementById("iAdmGrupo").value == "" || document.getElementById("iAdmGrupo2").value == "") ||  
       document.getElementById("iNome").value == "" ||
       document.getElementById("iSobrenome").value == "" || 
       document.getElementById("iCpf").value == "" || 
       document.getElementById("iRg").value == "" || 
       ((document.getElementById("iSexo").value == "") || (document.getElementById("iSexo2").value == ""))|| 
       document.getElementById("iDatanasc").value == ""){
           alert("Todos os campos são obrigatorios");
       }else{
           */
           document.getElementById("frm").submit();
       //}
       return false;
}

