tinyMCE.init({
			mode : "specific_textareas",
			editor_selector : "mceEditor",

		theme : "advanced",
		
		// Theme options
		theme_advanced_buttons1 : "bold,italic,underline,blockquote,link,unlink,anchor,image,forecolor,backcolor",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left"
		

 
		
	});

function showHTML() {
var editorInstance = tinyMCE.activeEditor;

alert( editorInstance.getHTML() );

}
