function updateForumReply(text) {
  content = tinyMCE.activeEditor.getContent();
  content += text;
  tinyMCE.activeEditor.setContent(content);
}

