function listu_malaligxkondicxojn()
{
    eoecho("<h2 id='malaligxsistemoj'>Malalig^kondic^osistemoj</h2>\n");
    $sql = datumbazdemando("ID", "malaligxkondicxsistemoj");
    $rez = sql_faru($sql);
    eoecho("<table>\n<tr><th>ID</th><th>nomo</th><th>alig^kat.-sistemo</th></tr>\n");
    while ($linio = mysql_fetch_assoc($rez)) {
        $sistemo = new Malaligxkondicxsistemo($linio['ID']);
        $sistemo->montru_tabeleron();
    }
    echo "</table>";
    ligu("malaligxkondicxsistemo.php", "Nova malalig^kondic^osistemo");
    echo "<hr/>";
    eoecho("<h2 id='malaligxkondicxotipoj'>Malalig^kondic^otipoj</h2>\n");
    $sql = datumbazdemando("ID", "malaligxkondicxotipoj");
    $rez = sql_faru($sql);
    eoecho("<table>\n<tr><th>ID</th><th>nomo</th><th>mallongigo</th><th>funkcio</th><th>parametro</th><th>uzebla</th></tr>\n");
    while ($linio = mysql_fetch_assoc($rez)) {
        $sistemo = new Malaligxkondicxotipo($linio['ID']);
        $sistemo->montru_tabeleron();
    }
    echo "</table>";
    ligu("malaligxkondicxotipo.php", "Nova malalig^kondic^otipo");
}