/********************************************************************
 * 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 $
 ********************************************************************/

/*
 * ytl featured setup used the openImageLibrary addon
 */
var ytl = new WYSIWYG.Settings();
ytl.ImagesDir = "http://www.yourteamlook.com/script/wysiwyg/images/";
ytl.PopupsDir = "http://www.yourteamlook.com/script/wysiwyg/popups/";
ytl.CSSFile = "http://www.yourteamlook.com/script/wysiwyg/styles/wysiwygytl.css";
ytl.Width = "450"; 
ytl.Height = "150px";
// customize toolbar buttons
ytl.removeToolbarElement("headings");
ytl.removeToolbarElement("strikethrough");
ytl.removeToolbarElement("save");
ytl.removeToolbarElement("preview");
ytl.removeToolbarElement("print");
ytl.removeToolbarElement("help");
// openImageLibrary addon implementation
//ytl.ImagePopupFile = "addons/imagelibrary/insert_image.php";
//ytl.ImagePopupWidth = 600;
//ytl.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;

