url = "http://zzz.mebuza.com/display.js";
function mbz_write(id) {
  data = encodeURIComponent(location.href) + ';' + id;
  document.write("<script src='" + url + "?data="  + data + "&mode=1'></script>");
}

function mbz_zones(name) {
  $(document).ready( function() {
    cls = '.' + name;
    data = location.href;
    ids = new Array();

    $(cls).each(function(index) {
      ids.push($(this).attr('mid'));
    });
    if ( ids.length > 0 ) {
      data = encodeURIComponent(location.href) + ';' + ids.join(';');
      $.getScript(url + '?data='+data+'&mode=2', function() {
        $(cls).each(function(index) {
          $(this).append($(zones[index]));
        });
      });
    }
  });
}

