/********************************************************************
 * 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 = "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 = "350px";
small.Height = "100px";
small.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #AA99AA";
small.Toolbar[0] = new Array("font", "fontsize", "bold", "italic", "underline"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;

/*
 * daz Setup Example
 */
var daz = new WYSIWYG.Settings();
full.ImagesDir = "w2e/ximages/";
full.PopupsDir = "w2e/popups/";
full.CSSFile = "";
daz.DefaultStyle = "font-family: Times New Roman; font-size: 12px; background-color: #ffffff; color: #000000;";
daz.Toolbar[0] = new Array("fontsize","bold","italic","underline","forecolor","justifyleft","justifycenter","justifyright","outdent","indent","unorderedlist","orderedlist","undo","redo","inserttable","insertimage","createlink","preview","viewSource"); // daz setup for toolbar 1
daz.Toolbar[1] = ""; // disable toolbar 2
daz.StatusBarEnabled = false;

/*
 * mini Setup Example
 */
var mini = new WYSIWYG.Settings();
full.ImagesDir = "w2e/ximages/";
full.PopupsDir = "w2e/popups/";
full.CSSFile = "dm_Style.css";
mini.DefaultStyle = "font-family: Times New Roman; font-size: 12px; background-color: #ffffff; color: #000000;";
mini.Toolbar[0] = new Array("bold","italic","underline","justifyleft","justifycenter","justifyright","unorderedlist","outdent","indent"); // mini setup for toolbar 1
mini.Toolbar[1] = new Array("fontsize","forecolor","undo","redo","insertimage","createlink","viewSource"); // disable toolbar 2
mini.StatusBarEnabled = false;
