function small_warenkorb() {
    no_small_wk     = document.getElementById( 'no_small_wk' );

    if( !no_small_wk ) {

        gsag            = document.getElementsByName( 'eshop_wk' )[0].GSAG.value;
        aquivPosGSAG    = gsag.indexOf( '=' );

        if( aquivPosGSAG > -1 ) {
            gsag        = gsag.slice( aquivPosGSAG + 1 );
            document.getElementsByName( 'eshop_wk' )[0].GSAG.value = gsag;
        }

        if( gsag != '' ) {
            iURI        = 'evewa2.php?d=5&menu=80900094&GSAG=' + gsag;

            $.ajax
            ({
                url: iURI,
                cache: false,
                success: function(html)
                {
                    $(".small_warenkorb").hide();
                    $(".small_warenkorb").html(html);
                    document.getElementsByName( 'eshop_wk' )[0].TRANSAKNR.value  = $(".small_warenkorb .small_wk_inf").attr('id');
                    $(".small_warenkorb .small_wk_inf").remove();
                    $(".small_warenkorb").show();
                }
            });
        }
    }
}

function small_warenkorb_del( artnr ) {
    no_small_wk     = document.getElementById( 'no_small_wk' );

    if( !no_small_wk ) {

        gsag            = document.getElementsByName( 'eshop_wk' )[0].GSAG.value;
        aquivPosGSAG    = gsag.indexOf( '=' );

        if( aquivPosGSAG > -1 ) {
            gsag        = gsag.slice( aquivPosGSAG + 1 );
            document.getElementsByName( 'eshop_wk' )[0].GSAG.value = gsag;
        }

        if( gsag != '' ) {
            iURI        = 'evewa2.php?d=5&menu=80900095&GSAG=' + gsag + '&ARTIKEL_NR=' + artnr;

            $.ajax
            ({
                url: iURI,
                cache: false,
                success: function(html)
                {
                    eshop_wk    = document.getElementsByName( 'eshop_wk' )[0];

                    $(".small_warenkorb").hide();
                    $(".small_warenkorb").html(html);
                    eshop_wk.TRANSAKNR.value  = $(".small_warenkorb .small_wk_inf").attr('id');
                    $(".small_warenkorb .small_wk_inf").remove();
                    $(".small_warenkorb").show();
                }
            });
        }
    }
}