/********************************************************************
 * 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 rtSuper = new WYSIWYG.Settings();
//full.ImagesDir = "images/";
//full.PopupsDir = "popups/";
//full.CSSFile = "styles/wysiwyg.css";
rtSuper.Width = "600px"; 
rtSuper.Height = "200px";
// customize toolbar buttons
rtSuper.addToolbarElement("font", 3, 1); 
rtSuper.addToolbarElement("fontsize", 3, 2);
rtSuper.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
rtSuper.ImagePopupFile = "addons/imagelibrary/insert_image.php";
rtSuper.ImagePopupWidth = 600;
rtSuper.ImagePopupHeight = 245;

/*
 * Small Setup Example
 */
var rtSmall = new WYSIWYG.Settings();
rtSmall.Width = "180px";
rtSmall.Height = "60px";
rtSmall.DefaultStyle = "font-family: Sans-Serif; font-size: x-small;";
rtSmall.Toolbar[0] = new Array("font", "fontsize", "bold", "italic", "underline","forecolor", "backcolor", "seperator", "maximize"); 
rtSmall.Toolbar[1] = ""
rtSmall.StatusBarEnabled = false;

var rtHelp = new WYSIWYG.Settings();
rtHelp.Width = "100%";
rtHelp.Height = "300px";
rtHelp.DefaultStyle = "font-family: Arial; font-size: 12px;";
rtHelp.Toolbar[0] = new Array("font", "fontsize", "headings", "bold", "italic", "underline", "seperator", "forecolor", "backcolor","seperator", "unorderedlist", "orderedlist","seperator", "indent", "outdent","seperator", "inserttable", "insertimage", "createlink", "viewSource"); 
rtHelp.Toolbar[1] = ""; 
rtHelp.StatusBarEnabled = false;

