
/*
  This inserts to the TinyMCE Editor, contents
*/
function insertToEditor(content) {
  
  // Insert the image
  tinyMCE.execCommand("mceInsertContent", true, content);
  tinyMCE.selectedInstance.repaint();
  
  return false;
}
