function setEditor(id, editor){
    if(editor == "none"){
        if(typeof removeEditArea == "function")
            removeEditArea(id);
        if(typeof removeTinyMce == "function")
            removeTinyMce(id);
    }
    else if(editor == "tinyMCE"){
        if(typeof removeEditArea == "function")
            removeEditArea(id);
        addTinyMce(id);
    }
    else if(editor == "editArea"){
        if(typeof removeTinyMce == "function")
            removeTinyMce(id);
        addEditArea(id);
    }
}

function switchWysiwygOnOff(id){
    switchWysiwyg(id);
    setEditor(id, "editArea");
}