create box


        } else {
         var box = $("<div id='box_"+b.rowid+"' style='display:none;' class=box>" +b.text+"</div>");
         box.css('top',b.y);
         box.css('left',b.x);
         box.appendTo("body");
         box.fadeIn(1200);
         box.draggable({ cursor: 'crosshair' });
         box.bind('dragstart', function(e, ui) {
          this.addClass('lock');
         });