/********************************************************************
 * 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 = "964px"; 
full.Height = "250px";
full.DefaultStyle = "background-color:#c1c1c1;font-family:arial;font-size:0.8em;line-height:1.5em;";
// openImageLibrary addon implementation
full.ImagePopupFile = "openwysiwyg/addons/imagelibrary/insert_image.php";
full.ImagePopupWidth = 643;
full.ImagePopupHeight = 250;
full.StatusBarEnabled = false;

/*
 * Small Setup Example
 */
 var small = new WYSIWYG.Settings();
//full.ImagesDir = "images/";
//full.PopupsDir = "popups/";
//full.CSSFile = "styles/wysiwyg.css";
small.Width = "743px"; 
small.Height = "250px";
small.DefaultStyle = "background-color:#c1c1c1;font-family:arial;font-size:0.8em;line-height:1.5em;";
// openImageLibrary addon implementation
small.ImagePopupFile = "openwysiwyg/addons/imagelibrary/insert_image.php";
small.ImagePopupWidth = 643;
small.ImagePopupHeight = 250;
small.StatusBarEnabled = false;

var tiny = new WYSIWYG.Settings();
tiny.Width = "743px";
tiny.Height = "200px";
tiny.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #AA99AA";
tiny.Toolbar[0] = new Array("font", "fontsize", "bold", "italic", "underline"); // small setup for toolbar 1
tiny.Toolbar[1] = ""; // disable toolbar 2
tiny.StatusBarEnabled = false;

