/********************************************************************
 * 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.2 2006/12/23 18:18:27 xhaggi Exp $
 ********************************************************************/

/*
 * Full featured setup used the openImageLibrary addon
 */
var full = new WYSIWYG.Settings();
//full.ImagesDir = "javascript/openwysiwyg/images/";
//full.PopupsDir = "javascript/openwysiwyg/popups/";
//full.CSSFile = "javascript/openwysiwyg/styles/wysiwyg.css";
full.Width = "100%";
full.Height = "400px";
full.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #ffffdd";
// customize toolbar buttons
//full.addToolbarElement("font", 3, 1);
//full.addToolbarElement("fontsize", 3, 2);
//full.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
full.ImagePopupFile = "javascript/openwysiwyg/addons/imagelibrary/insert_image.php";
full.ImagePopupWidth = 600;
full.ImagePopupHeight = 245;
full.Toolbar[0] = new Array(
                        "bold",
                        "italic",
                        "underline",
                        "strikethrough",
                        "justifyleft",
                        "justifyright",
                        "justifycenter",
                        //"unorderedlist",
                        //"orderedlist",
                        "outdent",
                        "indent",
                        "subscript",
                        "superscript",
                        "createlink",
                        //"viewSource",
                        "seperator",
                        "undo",
                        "redo"

                );
                full.Toolbar[1] = ""; // disable toolbar 2
                full.Toolbar[2] = ""; // disable toolbar 3
                
var vs = new WYSIWYG.Settings();
//vs.ImagesDir = "javascript/openwysiwyg/images/";
//vs.PopupsDir = "javascript/openwysiwyg/popups/";
//vs.CSSFile = "javascript/openwysiwyg/styles/wysiwyg.css";
vs.Width = "450px";
vs.Height = "150px";
vs.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #ffffdd";
// customize toolbar buttons
//vs.addToolbarElement("font", 3, 1);
//vs.addToolbarElement("fontsize", 3, 2);
//vs.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
vs.ImagePopupFile = "javascript/openwysiwyg/addons/imagelibrary/insert_image.php";
vs.ImagePopupWidth = 600;
vs.ImagePopupHeight = 245;
vs.Toolbar[0] = new Array(
                        "bold",
                        "italic",
                        "underline",
                        "strikethrough",
                        //"justifyleft",
                        //"justifyright",
                        //"justifycenter",
                        //"unorderedlist",
                        //"orderedlist",
                        //"outdent",
                        //"indent",
                        //"subscript",
                        //"superscript",
                        "createlink",
                        //"viewSource",
                        //"seperator",
                        "undo",
                        "redo"

                );
                vs.Toolbar[1] = ""; // disable toolbar 2
                vs.Toolbar[2] = ""; // disable toolbar 3



/*
 * Small Setup Example
 */
var small = new WYSIWYG.Settings();
small.Width = "350px";
small.Height = "100px";
small.Toolbar[0] = new Array("font", "fontsize", "bold", "italic", "underline"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;
