function affiche_choix_gestion_groupes_responsables($choix_group, $choix_resp, $onglet, $DEBUG = FALSE)
{
    $PHP_SELF = $_SERVER['PHP_SELF'];
    $session = session_id();
    if ($choix_group != "") {
        affiche_gestion_groupes_responsables($choix_group, $onglet, $DEBUG);
    } elseif ($choix_resp != "") {
        affiche_gestion_responsable_groupes($choix_resp, $onglet, $DEBUG);
    } else {
        echo "<div class=\"row\">\n";
        echo "<div class=\"col-md-6\">";
        affiche_choix_groupes_responsables($DEBUG);
        echo "</div>\n";
        echo "<div class=\"col-md-6\">";
        affiche_choix_responsable_groupes($DEBUG);
        echo "</div>\n";
        echo "</div>\n";
    }
}
function affiche_choix_gestion_groupes_responsables($choix_group, $choix_resp, $onglet, $DEBUG = FALSE)
{
    $PHP_SELF = $_SERVER['PHP_SELF'];
    $session = session_id();
    if ($choix_group != "") {
        affiche_gestion_groupes_responsables($choix_group, $onglet, $DEBUG);
    } elseif ($choix_resp != "") {
        affiche_gestion_responsable_groupes($choix_resp, $onglet, $DEBUG);
    } else {
        echo "<table>\n";
        echo "<tr>\n";
        echo "<td valign=\"top\">\n";
        affiche_choix_groupes_responsables($DEBUG);
        echo "</td>\n";
        echo "<td valign=\"top\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>\n";
        echo "<td valign=\"top\">\n";
        affiche_choix_responsable_groupes($DEBUG);
        echo "</td>\n";
        echo "</tr>\n";
        echo "</table>\n";
    }
}