/* This compressed file is part of Xinha. For uncompressed sources, forum, and bug reports, go to xinha.org */
/* This file is part of version 0.95 released Mon, 12 May 2008 17:33:15 +0200 */
/* The URL of the most recent version of this file is http://svn.xinha.webfactional.com/trunk/examples/XinhaConfig.js */
xinha_editors=null;
xinha_init=null;
xinha_config=null;
xinha_plugins=null;
xinha_init=xinha_init?xinha_init:function(){
xinha_editors=xinha_editors?xinha_editors:["myTextArea","anotherOne"];
xinha_plugins = xinha_plugins ? xinha_plugins :['CharacterMap','ContextMenu','ListType','Stylist','Linker','SuperClean','PasteText'];
if(!Xinha.loadPlugins(xinha_plugins,xinha_init)){
return;
}

xinha_config=xinha_config?xinha_config():new Xinha.Config();
xinha_config.pageStyleSheets=[_editor_url+"examples/full_example.css"];

xinha_config.width  = '627px';
xinha_config.height = '300px';

xinha_config.toolbar =
	[
	   ["popupeditor","killword","removeformat"],
	   ["separator","createlink","inserttable","separator","bold","italic","subscript","superscript","outdent","indent"],
	   ["separator","insertunorderedlist","insertorderedlist"],
	   ["separator","formatblock","htmlmode"]
	];
	
xinha_config.formatblock =
  {
	"&mdash; format &mdash;": "",
	"Heading 2": "h2",
	"Heading 3": "h3",
	"Normal"   : "p"
  };	
  
xinha_config.pageStyleSheets = [ _editor_url + "css/default.css"];		
xinha_config.baseURL = "http://www.blade-farming.com/members/";
xinha_config.getHtmlMethod = "TransformInnerHTML";
xinha_config.ListType.mode = "panel";
xinha_config.SuperClean.show_dialog = false;
xinha_config.killWordOnPaste = true;
xinha_config.stripBaseHref = true;

xinha_editors=Xinha.makeEditors(xinha_editors,xinha_config,xinha_plugins);
Xinha.startEditors(xinha_editors);
};
Xinha.addOnloadHandler(xinha_init);


