/********************************************************************
* openWYSIWYG settings file Copyright (c) 2006 openWebWare.com
* Contact us at devs@openwebware.com
* This copyright notice MUST stay intact for use.
*
* $Id: wysiwyg-settings.js,v 1.4 2007/01/22 23:05:57 xhaggi Exp $
********************************************************************/

/*
* Full featured setup used the openImageLibrary addon
*/
var full = new WYSIWYG.Settings();
full.Width = "640px;";
full.Height = "350px";
// customize toolbar buttons
//full.addToolbarElement("font", 3, 1); 
//full.addToolbarElement("fontsize", 3, 2);
//full.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
//full.ImagePopupFile = "addons/imagelibrary/insert_image.php";
//full.ImagePopupWidth = 600;
//full.ImagePopupHeight = 245;

/*
* Small Setup Example
*/
var small = new WYSIWYG.Settings();
small.Width = "322px";
small.Height = "430px";
small.Toolbar[0] = new Array(
            "fonts",
            "fontsizes",
            "headings",
            "bold",
            "italic",
            "underline",
            "strikethrough",
            "seperator",
//            "subscript",
//            "superscript",
//            "seperator",
            "unorderedlist",
            "orderedlist"
            );
small.Toolbar[1] = new Array(
            "cut",
            "copy",
            "paste",
            "removeformat",
            "seperator",
            "undo",
            "redo",
            "seperator",
            "justifyfull",
            "justifyleft",
            "justifycenter",
            "justifyright",
            "seperator",
            "indent",
            "outdent"
            );
small.Toolbar[2] = new Array(
            "forecolor",
            "backcolor",
            "seperator",
            "inserttable",
            "insertimage",
            "createlink",
            "seperator",
            "preview",
            "print",
            "seperator",
            "viewsource",
            "maximize",
            "seperator",
            "help"
            );

