// load the plugin files

HTMLArea.loadPlugin("TableOperations");

var editor = null;
function initNewEditor() {
  // create an editor for the "text" textbox
  editor = new HTMLArea("text");

  // register the TableOperations plugin with our editor
  editor.registerPlugin(TableOperations);
  editor.generate();
  return false;
}



