var FCKeditor = function(instanceName, width, height, toolbarSet, value) { this.InstanceName = instanceName; this.Width = width || '100%'; this.Height = height || '200'; this.ToolbarSet = toolbarSet || 'Default'; this.Value = value || ''; this.BasePath = FCKeditor.BasePath; this.CheckBrowser = true; this.DisplayErrors = true; this.Config = new Object(); this.OnError = null; } FCKeditor.BasePath = '/fckeditor/'; FCKeditor.MinHeight = 200; FCKeditor.MinWidth = 750; FCKeditor.prototype.Version = '2.6'; FCKeditor.prototype.VersionBuild = '18638'; FCKeditor.prototype.Create = function() {document.write(this.CreateHtml());} FCKeditor.prototype.CreateHtml = function() { if(!this.InstanceName || this.InstanceName.length == 0) { this._ThrowError(701, 'You must specify an instance name.');return '';} var sHtml = ''; if(!this.CheckBrowser || this._IsCompatibleBrowser()) { sHtml += ''; sHtml += this._GetConfigHtml(); sHtml += this._GetIFrameHtml(); } else { var sWidth = this.Width.toString().indexOf('%') > 0 ? this.Width : this.Width + 'px'; var sHeight = this.Height.toString().indexOf('%') > 0 ? this.Height : this.Height + 'px'; sHtml += '