function tinymce_sz_url_converter(url, node, on_save)
{
    return url;
}

function tinymce_init()
{
    tinyMCE.init({
    	mode : "specific_textareas", // aplikujeme pouze na elementy textarea s class="tiny_mce"
    	strict_loading_mode : true, 
        editor_selector : "tiny_mce", 
        forced_root_block : "", // neuzavirame cely text do zadneho blokoveho elementu
        theme: "advanced", // pokrocile volby
        theme_advanced_toolbar_location : "top", // umisteni tollbaru nad editacnim polem
        plugins: "advlink,table,paste", 
        language: "cs",
        height: 300, // vyska editacniho pole
        entity_encoding : "raw", // nebudeme nahrazovat znaky entitami 
	    paste_auto_cleanup_on_paste : true,
	    paste_remove_styles : true,
	    //document_base_url : ROOT_URL,
	    //relative_urls : false,
	    //remove_script_host : false,
	    urlconverter_callback : "tinymce_sz_url_converter",
	    theme_advanced_blockformats :  "h2,h3,h4,p,pre",
	    extended_valid_elements : "iframe[class|src|border=2|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name|frameborder|style|scrolling|marginheight|marginwidth]",
        
        // nastaveni zobrazenych buttonu 
        theme_advanced_buttons1 : "pastetext,|,bold,italic,underline,strikethrough,|,formatselect,|,link,unlink,anchor,image,|,hr,removeformat,visualaid,|,sub,sup,charmap,|,undo,redo",
        theme_advanced_buttons2 : "tablecontrols,|,bullist,numlist,|,outdent,indent,|,cleanup,code,help",
	    theme_advanced_buttons3 : ""
    });
    
    tinyMCE.init({
    	mode : "specific_textareas", // aplikujeme pouze na elementy textarea s class="tiny_mce_nl"
    	strict_loading_mode : true, 
        editor_selector : "tiny_mce_nl", 
        forced_root_block : "", // neuzavirame cely text do zadneho blokoveho elementu
        theme: "advanced",
        theme_advanced_toolbar_location : "top", // umisteni tollbaru nad editacnim polem
        language: "cs",
        height: 100, // vyska editacniho pole
        entity_encoding : "raw", // nebudeme nahrazovat znaky entitami 
	    paste_auto_cleanup_on_paste : true,
	    paste_remove_styles : true,
	    document_base_url : ROOT_URL,
	    relative_urls : false,
	    remove_script_host : false,
	    theme_advanced_blockformats :  "h2,h3,h4,p,pre",
	    
	    theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,formatselect,|,link,unlink,|,hr,removeformat,visualaid,charmap,|,undo,redo,|,,bullist,numlist,|,cleanup,code,help",
	    theme_advanced_buttons2 : "",
        theme_advanced_buttons3 : ""
    });
}

tinymce_init();

