/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function zumWarenkorbHinzufuegen(id, sessionid) {
    var productsize_id = 0;
    var productcolor_id = 0;
    var anzahl = 0;

    if ($('#productsize_'+id).val() != undefined) {
        productsize_id = $('#productsize_'+id).val();
    }

    if ($('#productcolor_'+id).val() != undefined) {
        productcolor_id = $('#productcolor_'+id).val();
    }

    if ($('#anzahl_'+id).val() != undefined) {
        anzahl = $('#anzahl_'+id).val();
    }

    window.location.href = "/baskets/zumWarenkorbHinzufuegen/product_id:"+id+"/productsize_id:"+productsize_id+"/productcolor_id:"+productcolor_id+"/anzahl:"+anzahl+"/sessionid:"+sessionid;
}

function kombinationenAusblenden(basketdetail_id) {
    $("#kombi_"+basketdetail_id).css({'display' : 'none'});
    $("#kombi_button_"+basketdetail_id).html('<a onclick="kombinationenEinblenden('+basketdetail_id+')" class="kombinationen_ein ab">Kombinationen einblenden</a>');
}

function kombinationenEinblenden(basketdetail_id) {
    $("#kombi_"+basketdetail_id).css({'display' : 'block'});
    $("#kombi_button_"+basketdetail_id).html('<a onclick="kombinationenAusblenden('+basketdetail_id+')" class="kombinationen ab">Kombinationen ausblenden</a>');
}
