tinyMCE.init({
    theme: "advanced",
    mode: "exact",
    elements: "minitresc,tresc,tresc_en,tresc_2,tresc_3,tresc_4,tresc_5",
	plugins : "media,paste,table",
	paste_auto_cleanup_on_paste : true,
	paste_preprocess : function(pl, o) {
            // Content string containing the HTML from the clipboard
            alert(o.content);
        },
        paste_postprocess : function(pl, o) {
            // Content DOM node containing the DOM structure of the clipboard
            alert(o.node.innerHTML);
        },
    theme_advanced_toolbar_location : "bottom",
    theme_advanced_toolbar_align: "center",
    theme_advanced_buttons1: "code,bold,italic,underline,"
	+ "justifyleft,justifycenter,justifyright,justifyfull,"
	+ "separator,bullist,numlist,sup,separator,link,unlink,"
	+ "fontsizeselect,forecolor",
    theme_advanced_buttons2: "image,media,"
	+ "charmap,blockquote,hr,separator,tablecontrols",
    theme_advanced_buttons3: "",
    width:"630px",
    language: "pl"
	});
