function expandAllProfile()
{
    var checkBase = document.settings.Database;
    for (var i = 0; checkBase.length > i; i++)
    {
        expandList(checkBase[i].id);
    }

    changeListProfile();
}

function collapseAllProfile()
{
    var checkBase = document.settings.Database;
    for (var i = 0; checkBase.length > i; i++)
    {
        collapseList(checkBase[i].id);
    }

    changeListProfile();
}

