﻿function InitTinyMCE() {
    $('textarea.tinymce').tinymce({
        script_url: 'tinymce/jscripts/tiny_mce/tiny_mce_gzip.ashx',
        disk_cache: true,
        theme: 'advanced',
        content_css: 'css/custom_content.css',
        theme_advanced_buttons1: "cut,copy,paste,pasteword,separator,undo,redo,search,replace,separator,bold,italic,underline,separator,fontselect,fontsizeselect",
        theme_advanced_buttons2: "indent,outdent,separator,bullist,numlist,separator,justifyleft,justifycenter,justifyright, justifyfull",
        theme_advanced_buttons3: "",
        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "left",
        theme_advanced_statusbar_location: "none",
        plugins: 'inlinepopups,searchreplace,paste',
        oninit: 'OnTinyMceInit',
        encoding: 'xml'
    });
}

function OnTinyMceInit() {
    var text = $('input[id$="hidHtml"]').val();

    text = decodeHtml(text);

    $('textarea.tinymce').html(text);
}

function GetTinyMceHtml() {
    var text = $('textarea.tinymce').html();

    text = encodeHtml(text);

    return text;
}

function SaveTinyMceHtml() {
    var text = GetTinyMceHtml();

    $('input[id$="hidHtml"]').val(text);

    return text;
}

