//FCKEditor function
function toFCK(source) {
  var oFCKeditor = new FCKeditor(source);
  oFCKeditor.BasePath = "resources/fckeditor/";
  oFCKeditor.ReplaceTextarea();
}
function toFullFCK(source) {
  var oFCKeditor = new FCKeditor(source);
  oFCKeditor.Height = "90%";
  oFCKeditor.Width = "75%";
  oFCKeditor.BasePath = "../resources/fckeditor/";
  oFCKeditor.ReplaceTextarea();
}