function AddProdInCard(ProdId)
{
    var url_php  = '/ajax_addtocard.php';
	 // document.getElementById('isnewprodajaxtmp').innerHTML="<div class='loadin' align='center'><img src='images/loading.gif' /></div>"         
   
    /*$('#isnewprodajax').fadeOut("slow");    
    document.getElementById('isnewprodajaxtmp').innerHTML="";*/
      mleft=parseInt($(window).width()/2 - $('#hiddenpopdiv').width()/2);
      mtop=parseInt($(window).height()/2 - $('#hiddenpopdiv').height()/2);
      
      $('#hiddenpopdiv').css({'left':mleft,'top':mtop});
      
      $('#hiddenpopdiv').fadeIn(200, 0.9)
      .animate({opacity: "0.9"}, "slow");
      $.ajax({
      url: url_php,
      async:false,
      global: false,
      type: "GET",
      data: "id="+ProdId+"&type=add",
      dataType: "html",
      success: function(msg){         
        answer = msg.split("+"); 
        //alert(answer[0]);
        $('#hiddenpopdiv').html(answer[0])
        .animate({opacity: "0.9", top: "-="+parseInt(mtop-100)}, "slow")
        .animate({opacity: "0", left: "+=270"}, "slow")
        .fadeOut("slow");
        $('#shcardinfo').html(answer[1]);
        
        //alert(msg);
        //$('#isnewprodajax').html(msg); 
        //$('#isnewprodajax').fadeIn("slow");  
         }
      });	 
}
