tinyMCE.init({
	theme : 'advanced',   
	editor_selector : 'editor',
	auto_resize : true,
	theme_advanced_layout_manager : "SimpleLayout",
	theme_advanced_toolbar_location : 'top',
	theme_advanced_blockformats : 'p,div,h1,h2,h3,h4,h5,h6,blockquote,dt,dd,code,samp',
	cleanup_on_startup : true,
	convert_fonts_to_spans : false,
	inline_styles : false,
	force_br_newlines : true,
	force_p_newlines : false,
	button_tile_map : true,
	theme_advanced_buttons1 : 'bold,italic,underline,justifycenter,forecolor,fontsizeselect,link,save,ibrowser',
	theme_advanced_buttons2 : 'h1,h2,h3,h4,p',
	theme_advanced_buttons3 : '',
	plugins : 'save,ibrowser'
});

function toggleEditor(id) {
	var elm = document.getElementById(id);

	if (tinyMCE.getInstanceById(id) == null) {
		tinyMCE.execCommand('mceAddControl', false, id);
	}
}