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

/*
 * Small Setup Example
 */
var small = new WYSIWYG.Settings();
small.Width = "400px";
small.Height = "250px";
small.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #ffffff";
small.Toolbar[0] = new Array("font", "fontsize", "bold", "italic", "underline"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;
small.disableExternalCapture=true;

