?>
">
                                <?php 
        echo $db_strings['Seconds'];
        ?>
                            </td>
                            <td>&nbsp;&nbsp;</td>
                            <td>
                                <input type="button" class="btn btn-default" name="db_refresh_select" value="<?php 
        echo $button_strings['Set'];
        ?>
" onClick="refresh_systable(this.form.db_refresh.value)">
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
        <?php 
    }
    ?>
    </table>
</form>
<div id="st">
    <?php 
    if (isset($systable)) {
        echo get_systable_html($systable, $s_systable) . js_javascript("new markableIbwaTable('systable')");
    }
}
?>
</div>
function systable($seconds)
{
    global $s_systable, $s_login;
    list($family, $version) = server_info($s_login['server']);
    define('SERVER_FAMILY', $family);
    define('SERVER_VERSION', $version);
    $s_systable['refresh'] = $seconds;
    if ($seconds != 0) {
        $systable = get_systable($s_systable);
        $html = get_systable_html($systable, $s_systable);
    } else {
        $html = '';
    }
    globalize_session_vars();
    return jsrsArrayToString(array($html), $delim = '~');
}