    xinha_editors = null;
    xinha_init    = null;
    xinha_config  = null;
    xinha_plugins = ['CharacterMap','ImageManager','PasteText']; //,'Linker','FindReplace'

    xinha_init = xinha_init ? xinha_init : function()
    {
	 if(!Xinha.loadPlugins(xinha_plugins, xinha_init)) return;


       	xinha_config = new Xinha.Config();
	   	xinha_config.width  = '480px';
       	xinha_config.height = '180px';
// 		xinha_config.pageStyleSheets = ["/www/MMN/urbanredneck.com/layout/Xinha.css"];
		xinha_config.pageStyleSheets = ["/layout/Xinha_Member.css"];
		xinha_config.showLoading = true;
		xinha_config.stripScripts=true;
		xinha_config.htmlareaPaste = true; xinha_config.killWordOnPaste=true;
		xinha_config.htmlRemoveTags = /img|h1|h2|h3|h4|table|div/; // 
		xinha_config.statusBar=false;
		xinha_config.fullPage = false;


		xinha_config.formatblock =
		{
			"&mdash; format &mdash;": "",
			"Paragraph": "p",
			"Title": "h4"
		};
		
		xinha_config.toolbar =
		 [
		 	["linebreak","justifyleft","justifycenter"], //,"justifyright","justifyfull"
		  	["separator","bold","italic","underline"],
			["separator","hilitecolor","forecolor","textindicator"], //,"formatblock","strikethrough","textindicator"],
		 	// ["separator","insertorderedlist","insertunorderedlist","outdent","indent"],
		    ["separator","paste","createlink"], //,"clearfonts"
		  	["separator","undo","redo"] //,"insertimage","showhelp","FR-findreplace"]
	 	];

	  xinha_editors   = Xinha.makeEditors(xinha_editors, xinha_config, xinha_plugins);
      Xinha.startEditors(xinha_editors);
    }
    Xinha._addEvent(window,'load', xinha_init);
