    function check_garantie_sub(item_id)
    {
            var garantie_gebucht=document.getElementById("warenkorb"+item_id).garantie_gebucht.value;
            var garantie_verf=document.getElementById("warenkorb"+item_id).garantie_verf.value;
            if (garantie_gebucht==false && garantie_verf==1)
            {
                document.getElementById("garantie"+item_id).style.display="block";
                return false;
            }
            return true;
    }

    function set_garantie(aktiv)
    {
        if(aktiv)
        {
            document.warenkorb.garantie.value=1;
            document.warenkorb.garantie_gebucht.value=1;
        }
        else
        {
            document.warenkorb.garantie.value=0;
            document.warenkorb.garantie_gebucht.value=0;
        }
    }
    
    function set_garantie_popup(aktiv)
    {
        set_garantie(aktiv);
        document.warenkorb.submit();
    }

    function set_garantie_sub(aktiv, id)
    {
        if(aktiv)
        {
            document.forms["warenkorb"+id].garantie_gebucht.value=1;
            document.forms["warenkorb"+id].garantie.value=1;
        }
        else
        {
            document.forms["warenkorb"+id].garantie_gebucht.value=0;
            document.forms["warenkorb"+id].garantie.value=0;
        }
        document.forms["warenkorb"+id].submit();
    }
