function main_Update_sites_info()
{
    $retranslator = new retranslator();
    $array = $retranslator->RetranslatorSitesList();
    $table = "<table style='width:100%'>";
    while (list($num, $ligne) = each($array)) {
        $table = $table . "<tr>\n\t\t<td style='font-size:12px' nowrap valign='top' width=1%><img src='img/fw_bold.gif'></td>\t\n\t\t<td style='font-size:14px' nowrap><strong>{$ligne}</strong></td>\n\t\t</tr>\n\t\t\n\t\t";
    }
    $table = $table . "</table>";
    $html = "{$tab}<br><H3>{Update_sites_info_title}</H3>{$table}";
    $tpl = new templates();
    echo $tpl->_ENGINE_parse_body($html);
}