		tinyMCE.init({
			mode : "specific_textareas",
			editor_selector : "mceEditor",
			plugins : "paste",
			language : '<%= LCase(session("CDlingua")) %>',
			// Plugin di copia
			paste_auto_cleanup_on_paste : true,
			paste_preprocess : function(pl, o) {
				// Contenuto HTML incollato
				// alert(o.content);
			},
			paste_postprocess : function(pl, o) {
				// Contenuto filtrato
				// alert(o.node.innerHTML);
			},
			// Tema
			theme : "advanced",
			theme_advanced_toolbar_location : "top",
			theme_advanced_buttons1 : "pastetext,removeformat,selectall,|,bold,italic,underline,|,bullist,numlist,|,undo,redo",
			theme_advanced_buttons2 : "",
			theme_advanced_buttons3 : ""
		});
