function FCKeditor(textarea_element)
{
	this.BasePath;
	this.ToolbarSet;
  this.width;
  this.Height;
  this.ReplaceTextarea = function() 
  {
  	CKEDITOR.replace( textarea_element,{basePath : '/CK/', customConfig: '/CK/config.js', height: '300px',  toolbar : 'EntryBasic'} );
  	//CKEDITOR.replace( textarea_element,{basePath : '/CK/', customConfig: '/CK/config.js',  toolbar : 'Basic'} );
  };
}
