var tinymce_options = {
  mode : "textareas",
  theme : "simple"
};

var tinymce_advanced_options = {
  mode : "textareas",
  theme : "advanced",
	plugins : "paste",
	theme_advanced_buttons3_add : "pastetext,pasteword,selectall",
	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);
  }
};

var tinymce_advanced_with_save_options = {
  mode : "textareas",
  theme : "advanced",
  theme_advanced_buttons1: 'save,cancel',
  plugins: 'save,paste'
};

tinyMCE.init(tinymce_advanced_options);
tinyMCE.init(tinymce_advanced_with_save_options);
tinyMCE.init(tinymce_options);