// standard tinyMCE.init call
function init_simple_tinyMCE() {
  tinyMCE.init({
    mode : "textareas",
    theme : "simple"
  });
}

function init_tinyMCE() {
  try {
    tinyMCE.init({
      mode: "textareas",
      editor_deselector: "noTinyMCE",
      content_css: "/stylesheets/tinymce.css?=" + Math.floor(Math.random() * 50000),
      //language: "cs",
      theme: "advanced",
      theme_advanced_buttons1: "formatselect,separator,bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright, justifyfull,bullist,numlist,undo,redo,link,unlink,separator,charmap,image,separator,sub,sup",
      theme_advanced_buttons2: "",
      theme_advanced_buttons3: "",
      theme_advanced_toolbar_location: "top",
      theme_advanced_toolbar_align: "left",
      extended_valid_elements: "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
      theme_advanced_blockformats : "p,h3"
    });
  } catch(err) {}
}