//Listing 1.0
//Kod pliku tinymcm.js

tinyMCE.init({
         theme : "advanced",     
     mode: "exact",
         elements : "elm1",    
    language : "en",
    entity_encoding : "raw",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,bullist,
        numlist,indent,separator,undo,redo,
        separator,link,unlink,anchor,image,separator,code",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    auto_cleanup_word : true,
    plugins : "table,save,advhr,advimage,advlink,emotions,iespell,
        insertdatetime,preview,zoom,flash,searchreplace,
        print,contextmenu,fullscreen",
    plugin_insertdate_dateFormat : "%m/%d/%Y",
    plugin_insertdate_timeFormat : "%H:%M:%S",
    extended_valid_elements : "a[name|href|target=_blank|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]",
    fullscreen_settings : {
        theme_advanced_path_location : "top",
        theme_advanced_buttons1 : "fullscreen,separator,preview,separator,cut,
                copy,paste,separator,undo,redo,separator,search,
                replace,separator,code,separator,cleanup,separator,             bold,italic,underline,strikethrough,separator,forecolor,
                backcolor,separator,justifyleft,justifycenter,
                justifyright,justifyfull,separator,help",
        theme_advanced_buttons2 : "removeformat,styleselect,formatselect,fontselect,
                fontsizeselect,separator,bullist,numlist,outdent,indent,separator,
link,unlink,anchor",
        theme_advanced_buttons3 : "sub,sup,separator,image,insertdate,inserttime,separator,
                tablecontrols,separator,hr,advhr,visualaid,separator,
                charmap,emotions,iespell,flash,separator,print"
    }
});