function initEditor(id) {
    var ed = new tinymce.Editor(id, {
        // General options
        theme : "advanced",
        plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,advlink1,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,testplugin,attach",

        // Theme options
        theme_advanced_buttons1 : "print,fullscreen,preview,|,pastetext,pasteword,search,replace,|,undo,redo,|,link,advlink1,unlink,testplugin,attach,|,hr,removeformat,visualaid,|,attribs,template,insertdate,inserttime",
        theme_advanced_buttons2 : "styleprops,formatselect,fontselect,fontsizeselect,|,bold,italic,underline,strikethrough,sub,sup,|,justifyleft,justifycenter,justifyright,justifyfull",
        theme_advanced_buttons3 : "tablecontrols,|,bullist,numlist,outdent,indent,|,backcolor,forecolor,|,help,code",
        // styleselect,cleanup,
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",

        // Example content CSS (should be your site CSS)
        content_css : "jspwiki.css"


    });
    ed.render();
    return ed;
}
