function myHandleEvent(e) {
//	window.status = "event:" + e.type;
	switch (e.type) {
		case 'focus':
			for (var n in tinyMCE.instances) {
		        if (tinyMCE.selectedInstance)
		        {
//		            document.getElementById(tinyMCE.instances[n].editorId + "_toolbar").style.display = "block";
		tmphtml = escape($(tinyMCE.selectedInstance.editorId + '_parent').previousSibling.innerHTML);
					$('tmpinfo').innerHTML = tmphtml;				
		        }
		    }
		    

			break;
//			case 2: result = 'two'; break;
//			default: result = 'unknown';
	}	
	return true; // Continue handling
}

tinyMCE.init(
	{
	mode : "specific_textareas",
	editor_selector : "RichText",
	theme : "advanced",
//	height : "200",
	handle_event_callback : "myHandleEvent",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_buttons1 : "bold,italic,link,unlink,bullist,separator,undo,redo,separator,cleanup,removeformat",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : ""
	}
);
