
     
     function cart(id,total,text1,text2,text3){
 
     var cart_button;
     cart_button =$('#add2_'+id).html(); 


     $('#add2_'+id).html('<img src="/xmlshop/templ/default/images/loading_small.gif">');
    

     
     kol=$('#addk_'+id).val(); 
     
  
     
     $.get("/xmlshop/ajax/addcart.php", { kol: kol , id: id },
     
      function(data){

	 $('#cart-info').load('/xmlshop/ajax/cref.php');
	 
//	 alert(data);

	 if(data=='E1') {
	 $('#add2_'+id).html(text2+' '+total+' '+text3); 
	  } else {
	  $('#add2_'+id).html('<img src="/xmlshop/templ/default/images/ico/tick.gif" align="middle"> '+text1);  
	  }
   });


	  
       window.setTimeout(function () { 
       $('#add2_'+id).html(cart_button);
		}, 3000);

        
 
     }
     

