
function initDocument() {

   var cfg = new HTMLArea.Config(); //nuovo oggetto per la configurazione
   cfg.toolbar =  [

      [ "fontname", "space",
        "fontsize", "space",
        "formatblock", "space",
        "bold", "italic", "underline", "strikethrough", "separator",
        //"subscript", "superscript", "separator",
        "copy", "cut", "paste", "space", "undo", "redo"
      ],

      [ "justifyleft", "justifycenter", "justifyright", "justifyfull", "separator",
        //"lefttoright", "righttoleft", "separator",
        "insertorderedlist", "insertunorderedlist", "outdent", "indent", "separator",
        "forecolor", "hilitecolor", "separator",
        //"inserthorizontalrule", "createlink", "insertimage", "inserttable", "htmlmode", "separator",
        "inserthorizontalrule", "createlink", "insertimage", "inserttable", "separator",
        //"popupeditor", "separator", "showhelp", "about"
      ]


   ];

   cfg.pageStyle = "@import url(../style.css);";

   cfg.width = "550px";
   cfg.height = "450px";

   var editor = new HTMLArea("editor",cfg);

   editor.registerPlugin(CSS, {
                                combos : [
                                    {
                                      label: "Stile",
                                      options: {
                                              "selezione una stile":"",
                                              "titoli": "titoli",
                                              "testo": "testo"
                                               }
                                    }
                                ]
                              }
   );

   editor.generate();

}



