 function Load(url, div) {
          var destino = '../modules/ajax.php?x='+url
          $.ajax({
                  type: 'POST',
                  dataType: 'html',
                  cache: false,
                  url: destino,
                  success: function(data) {
                           $('#'+div).empty();
                           $('#'+div).html(data);
                  }
          });
 }


