tinyMCE.init({
mode : "textareas",
theme : "advanced",

theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,link,unlink,|,blockquote,|,undo,redo",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left"

});
function toggleEditor(id) {
    if (!tinyMCE.get(id))
    	tinyMCE.execCommand('mceAddControl', false, id);
    else
    	tinyMCE.execCommand('mceRemoveControl', false, id);
}