	// This contains the names of textareas we will make into Xinha editors
    xinha_init = function()
    {
      xinha_plugins =
      [
       'ContextMenu',
	   'CharCounter',
	   'InsertSmiley',
	   //'GetHtml',
	   'EditTag',
       'TableOperations'
      ];

      // THIS BIT OF JAVASCRIPT LOADS THE PLUGINS, NO TOUCHING  :)
      if(!HTMLArea.loadPlugins(xinha_plugins, xinha_init)) return;

      xinha_editors = ['msgtext'];
      xinha_config = new HTMLArea.Config();
	  xinha_config.width  = '580px';
	  xinha_config.pageStyleSheets.push('/poker/stylesheets/editpage.css');

      xinha_editors   = HTMLArea.makeEditors(xinha_editors, xinha_config, xinha_plugins);

      HTMLArea.startEditors(xinha_editors);
    }
	SafeAddOnload(xinha_init);
