/********************************************************************
 * 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 $
 ********************************************************************/


/*
 * Small Setup Example
 */
var small = new WYSIWYG.Settings();
small.Width = "100%";
small.Height = "100px";
small.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #fff";
small.Toolbar[0] = new Array( "removeformat", "headings", "bold", "italic", "underline", "img"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;

var news = new WYSIWYG.Settings();
news.Width = "100%";
news.Height = "100px";
news.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #fff";
news.Toolbar[0] = new Array( "removeformat", "headings", "bold", "italic", "underline", "insertimage", "createlink", "viewSource" ); // small setup for toolbar 1
news.Toolbar[1] = ""; // disable toolbar 2
news.StatusBarEnabled = false;

