function panier_del(id){
        new Ajax.Request("/actions,boutique.php",{
            method:"post",
            parameters:"del="+id,
            onSuccess:function(xhr){
                location.replace("/boutique/panier.php");
            }
        });
}

function panier_qte(obj,id){
    var qte = obj.value;
    new Ajax.Request("/actions,boutique.php",{
        method:"post",
        parameters:"qte="+qte+"&id="+id,
        onSuccess:function(xhr){
            location.replace("/boutique/panier.php");
        }
    });
}
