public function __construct($name)
 {
     $this->HtmlMame = $name;
     $name = str_replace(array("[", "]"), array("_", ""), $name);
     parent::__construct($name);
     $this->BasePath = fvSite::$fvConfig->get("editor.basepath");
     $this->Config["CustomConfigurationsPath"] = fvSite::$fvConfig->get("editor.config");
     $this->ToolbarSet = fvSite::$fvConfig->get("editor.toolbar");
     $this->Class = fvSite::$fvConfig->get("editor.className");
     $this->Style = fvSite::$fvConfig->get("editor.style");
     $this->Width = "95%";
 }