

function memo_add(list_id, item_id)
{
  var content = "";
  var more_data = "";
  if(memo_add.arguments[2]) 
  {
    content = memo_add.arguments[2];
  }
  if(memo_add.arguments[3]) 
  {
    //data seperated by @@@ -> explode
	more_data = memo_add.arguments[3];
  }
 
 
  $.ajax({
     type: "POST",
     dataType: "script",
     url: "/admin/ajaxfiles/modules/memo/index.php",
     data: "add_list="+ list_id +"&add_item="+ item_id +"&add_content="+ content + "&more_data=" + more_data,
     error: function(msg){
       msg.responseText;
     }
  });
  
}

function memo_del(list_id)
{
 
  var item = "";
  var amount = "";
  if(memo_del.arguments[1]) 
  {
    item = memo_del.arguments[1];
  }
  if(memo_del.arguments[2]) 
  {
    amount = memo_del.arguments[2];
  }
   
  $.ajax({
     type: "POST",
     dataType: "script",
     url: "/admin/ajaxfiles/modules/memo/index.php",
     data: "del_list="+ list_id +"&del_item="+ item  +"&del_amount="+ amount,
     error: function(msg){
       msg.responseText;
     }
  });

}

function showAddCartInfoDiv()
{
	$('#shopping_cart_div').fadeIn(500, 
	function() { 
		setTimeout(function(){ $('#shopping_cart_div').fadeOut(500); }, 600);
	}		
	);
}

function changeDeliveryCountry(list_id, country)
{
  $.ajax({
	     type: "POST",
	     dataType: "script",
	     url: "/admin/ajaxfiles/modules/memo/index.php",
	     data: "add_list="+ list_id +"&country_iso="+ country,
	     error: function(msg){
	       msg.responseText;
	     }
	  });
}