function SepeteEkle(adres,id,tema){
    $.ajax({
    type: "GET",
    url: adres,
    beforeSend:function(){
        $("#"+id).html("<img src=\""+tema+"images/loading.gif\" alt=\"Yükleniyor..\" />");
    },
    success: function(msg){
        $("#"+id).html(msg);
    }
    });
}

function SepeteEkleListe(adres,id,tema){
    $.ajax({
    type: "GET",
    url: adres,
    beforeSend:function(){
        $("#"+id).html("<img src=\""+tema+"images/loading.gif\" alt=\"Yükleniyor..\" />");
    },
    success: function(msg){
        $("#"+id).html("<img src=\""+tema+"images/urun-eklendi.gif\" alt=\"\" />");
    }
    });
}