﻿function loadTiny() {    
    tinyMCE.init({
        mode: "specific_textareas",
        editor_selector: "mceEditor",
        theme: "advanced",
        plugins: "paste, media, advlink",
        theme_advanced_buttons1: 'bold,italic,underline,separator,outdent,indent,separator,undo,redo,link,unlink,|,cut,copy,paste,pastetext,removeformat,image, media',
        theme_advanced_buttons2: "",
        theme_advanced_buttons3: "",
        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "left",
        theme_advanced_statusbar_location: "bottom",
        convert_urls : false,
        theme_advanced_resizing: false
    });
}
