tinyMCE.init({
	mode : "textareas",
	theme : "none",
	editor_selector : "noTinyMCE"
});

tinyMCE.init({
	mode : "textareas",
	theme : "simple",
	skin : "o2k7",
	editor_selector : "simpleTinyMCE",
	content_css : "/data/css/style.css"
});

tinyMCE.init({
	mode : "textareas",
	theme : "advanced",
	skin : "o2k7",
	plugins : "inlinepopups,searchreplace,table",
	theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,image,link,unlink,sub,sup,charmap,|,search,replace,undo,redo",
	theme_advanced_buttons2 : "tablecontrols,|,fontsizeselect,|,formatselect",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "center",
	content_css : "/data/css/style.css"
});

function toggleEditor(id) {
 tinyMCE.execCommand('mceToggleEditor', false, id);
}

