/********************************************************************
 * 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.ImagesDir = "e_images/";
//full.PopupsDir = "popups/";
//full.CSSFile = "styles/wysiwyg.css";
full.Width = "85%"; 
full.Height = "250px";
// 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 = "757px";
small.Height = "70px";
small.DefaultStyle = "font-family: Arial; font-size: 10px; background-color: #FFFFFF; color: #8da051;";
small.Toolbar[0] = new Array("bold", "italic", "underline", "seperator"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;

// medium Setup -- UV
var medium = new WYSIWYG.Settings();
medium.Width = "757px";
medium.Height = "200px";
medium.DefaultStyle = "font-family: Arial; font-size: 11px; background-color: #FFFFFF; color: #8da051;";
medium.Toolbar[0] = new Array("font", "seperator", "bold", "italic", "underline", "strikethrough", "seperator", "justifyfull", "justifyleft", "justifycenter", "justifyright", "seperator", "forecolor", "backcolor",  "seperator", "unorderedlist", "orderedlist", "seperator", "outdent", "indent", "seperator", "subscript", "superscript"); // small setup for toolbar 1
medium.Toolbar[1] = new Array ("undo", "redo", "seperator", "inserttable", "insertimage", "createlink", "seperator",  "preview", "print", "seperator", "viewSource", "maximize", "seperator", "help"); // medium setup for toolbar 2
medium.StatusBarEnabled = false;
