﻿function initTiny()
{
tinyMCE.init({  
    // General options  
    mode : "textareas",  
    theme : "advanced",  
    //plugins : "safari,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,fullscreen,xhtmlxtras",  
    plugins : "safari,inlinepopups,paste,preview,fullscreen,xhtmlxtras",  
  
    // Theme options  
    theme_advanced_buttons1 : "undo,redo,|,bold,italic,|,bullist,numlist,|,link,unlink," + "|,cleanup,|,fullscreen,preview", //|,forecolor,backcolor,
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    //theme_advanced_buttons1 : "undo,redo,|,cut,copy,paste,pastetext,pasteword,|,search,replace,|,bold,italic,underline,strikethrough,sub,sup,|,forecolor,backcolor,|,bullist,numlist,|,outdent,indent,blockquote",  
    //theme_advanced_buttons2 : "link,unlink,anchor,|,image,media,|,cite,abbr,acronym,attribs,|,insertdate,inserttime,charmap,emotions,iespell,|,removeformat,cleanup,code,|,fullscreen,preview,print,|,help",  
    //theme_advanced_buttons3: "",  
    theme_advanced_toolbar_location : "top",  
    theme_advanced_toolbar_align : "left",  
    theme_advanced_statusbar_location : "bottom",  
    theme_advanced_resizing : true,  
    theme_advanced_resize_horizontal : false,
    
    paste_auto_cleanup_on_paste : true,
    paste_remove_styles : true,
   
  
    // Example content CSS (should be your site CSS)  
    content_css : "/styles/style-editor.css"  
});  
}
initTiny();