function ToggleFilterPart(obj, but)
{
    if (obj.style.display == "block")
    {
        but.className = "switch_but_plus";
        obj.style.display = "none";
    }
    else
    {
        but.className = "switch_but_minus";
        obj.style.display = "block";
    }
}
