function loadFilters()
{
    global $FILTERS, $CM;
    if (!empty($CM) && $CM->GetData(115, $FILTERS)) {
        return;
    }
    $FILTERS = new FilterList();
    if (is("DB_CONNECTION")) {
        $FILTERS->Populate();
    }
    if (!empty($CM)) {
        $CM->SetData(115, $FILTERS, true);
    }
}