function applyFCKeditor(textareaId, locale, width, height, context, toolbarset) {
  var oFCKeditor = new FCKeditor( textareaId ) ;
	oFCKeditor.BasePath = context + '/editor/FCKeditor/' ;
  oFCKeditor.Width=width ;
	oFCKeditor.Height=height ;
	oFCKeditor.Config['DefaultLanguage'] = locale ;
  oFCKeditor.ToolbarSet	= toolbarset ;
  oFCKeditor.ReplaceTextarea() ;
}