$(document).ready(function(){
  $(".badd").click(function(event){
    $("#ilist").load("/rpc/data.php", {'c': 1, 'id': this.id});
  });
  $('#mapimg').click(function(event){
  	var x = event.pageX - this.offsetLeft;
  	var y = event.pageY - this.offsetTop;
    var mid = $('#mapid').val();
    var name = $('#igmname').val();
    var text = '/move '+name+' '+mid+' '+x+' '+y;
    $('#command').val(text);
    console.log("x= %d; y=%d; mid= %s; name = %s", x, y, mid, name);
  });
});

function rmi(id){
  $("#ilist").load("/rpc/data.php", {'c': 2, 'id': id});
  return false;
}