tinyMCE.init({
    theme: "advanced",
    mode: "exact",
    elements: "tresc,osobie",
    plugins : "paste",
	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 : "top",
    theme_advanced_toolbar_align: "left",
    theme_advanced_buttons1: "bold,italic,underline,strikethrough,separator,fontsizeselect,forecolor,separator,"
    + "justifyleft,justifycenter,justifyright,justifyfull,"
    + "separator,bullist,numlist,sup,"
    + "separator,link,unlink,separator,image,"
	+ "charmap,blockquote,separator",
    theme_advanced_buttons2: "",
    theme_advanced_buttons3: "",
    width:"640px",
    language: "pl"
	});
