/********************************************************************
 * 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 = "../openWYSIWYG/images/";
full.PopupsDir = "../openWYSIWYG/popups/";
full.CSSFile = "../openWYSIWYG/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 = "../openWYSIWYG/addons/imagelibrary/insert_image.php";
full.ImagePopupWidth = 600;
full.ImagePopupHeight = 245;

/*
 * tiny Setup Example
 */
var tiny = new WYSIWYG.Settings();
tiny.Width = "100%";
tiny.Height = "200px";
tiny.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #FFFFBB";
tiny.Toolbar[0] = new Array("bold", "italic", "underline", "createlink", "cut", "copy", "paste", "undo", "redo"); // tiny setup for toolbar 1
tiny.Toolbar[1] = ""; // disable toolbar 2
tiny.StatusBarEnabled = false;
