
function GetFCK(){
  var oFCKeditor = new FCKeditor('article_long_description');

  var basepath = "fckeditor/";
  oFCKeditor.BasePath = basepath;

  oFCKeditor.Height = "250" ; // 250 pixels
  oFCKeditor.Width = "100%" ; // 80 percent

  oFCKeditor.ToolbarSet = "Default" ;

 oFCKeditor.DisplayErrors = true ;
 oFCKeditor.Config[ "AutoDetectLanguage" ] = false ;
 oFCKeditor.Config[ "DefaultLanguage" ] = "ar" ;

 // oFCKeditor.Value = "The book is called \"The Last Minute\"" ;

  //oFCKeditor.Config['SkinPath'] = '../fckeditor/editor/skins/office2003/' ;
 oFCKeditor.ReplaceTextarea();
}

function GetFCKCMS(){
  var oFCKeditor = new FCKeditor('cms_content');

  var basepath = "fckeditor/";
  oFCKeditor.BasePath = basepath;

  oFCKeditor.Height = "500" ; // 250 pixels
  oFCKeditor.Width = "100%" ; // 80 percent

  oFCKeditor.ToolbarSet = "Default" ;

 oFCKeditor.DisplayErrors = true ;
 oFCKeditor.Config[ "AutoDetectLanguage" ] = false ;
 oFCKeditor.Config[ "DefaultLanguage" ] = "ar" ;

 // oFCKeditor.Value = "The book is called \"The Last Minute\"" ;

  //oFCKeditor.Config['SkinPath'] = '../fckeditor/editor/skins/office2003/' ;
 oFCKeditor.ReplaceTextarea();
}

function GetFCKNewsLetter(){
  var oFCKeditor = new FCKeditor('news_email');

  var basepath = "fckeditor/";
  oFCKeditor.BasePath = basepath;

  oFCKeditor.Height = "500" ; // 250 pixels
  oFCKeditor.Width = "100%" ; // 80 percent

  oFCKeditor.ToolbarSet = "Default" ;

 oFCKeditor.DisplayErrors = true ;
 oFCKeditor.Config[ "AutoDetectLanguage" ] = false ;
 oFCKeditor.Config[ "DefaultLanguage" ] = "ar" ;
 oFCKeditor.ReplaceTextarea();
}
