function CreateEditor(_name, _path, _width, _height, _toolbarset, _expanded) {     var sBasePath = _path;     var oFCKeditor = new FCKeditor(_name) ;     oFCKeditor.Config['ToolbarStartExpanded'] = _expanded ;     oFCKeditor.BasePath     = sBasePath ;     oFCKeditor.Width        = _width ;     oFCKeditor.Height       = _height ;     oFCKeditor.ToolbarSet   = _toolbarset;     oFCKeditor.ReplaceTextarea() ; }
