function filtrZboziZmena()
{
    document.getElementById("formular_filtr_vyrobcu").submit();
}

function oddeleniPolozkyFiltrVse()
{
    var moznosti = DOM_vratElementyPodleAtributu(
                        "type", 
                        "checkbox",
                        "input",
                        "oddeleni_vyrobci_polozky");
    
    for (i = 0; i < moznosti.length; i++)
    {
        moznosti[i].checked="checked";
    }
    
    filtrZboziZmena();
}
