function init_editor(id) {
  if(!document.getElementById) {
    var items = document.getElementsByName(id);
    if(items.length > 0) {
      items[0].id = id;
    }
  }
  var oFCKeditor = new FCKeditor(id);
  oFCKeditor.Height=300;
  oFCKeditor.BasePath	= '/js/FCKeditor/';
  oFCKeditor.ReplaceTextarea();
  
  //Hack for IE - for some reason the iframe needs to be reloaded before it will show correctly
  if(document.all)
  {
    var frame = document.getElementById(instance+'___Frame');
    frame.contentWindow.location.reload();
  }
}