/********************************************************************
 * 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 = "85%"; 
full.Height = "250px";
// customize toolbar buttons
full.addToolbarElement("font", 3, 1); 
full.addToolbarElement("fontsize", 3, 2);
full.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
full.ImagePopupFile = "addons/imagelibrary/insert_image.php";
full.ImagePopupWidth = 600;
full.ImagePopupHeight = 245;

var privatefull = new WYSIWYG.Settings();
privatefull.ImagesDir = "../img/icons/";
privatefull.PopupsDir = "../popups/";
privatefull.CSSFile = "../css/wysiwyg.css";
privatefull.Width = "85%"; 
privatefull.Height = "250px";
// customize toolbar buttons
privatefull.addToolbarElement("font", 3, 1); 
privatefull.addToolbarElement("fontsize", 3, 2);
privatefull.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
privatefull.ImagePopupFile = "../popups/addons/imagelibrary/insert_image.php";
privatefull.ImagePopupWidth = 600;
privatefull.ImagePopupHeight = 245;
privatefull.StatusBarEnabled = false;
privatefull.InvertIELineBreaks = true;
privatefull.ContextMenu = false;

/*
 * Small Setup Example
 */
var small = new WYSIWYG.Settings();
small.Width = "500px";
small.Height = "200px";
small.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: white";
small.Toolbar[0] = new Array("bold", "italic", "underline","strikethrough","outdent","indent","createlink","removeformat","emoticons"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;
small.InvertIELineBreaks = true;
small.ContextMenu = false;

var privatesmall = new WYSIWYG.Settings();
privatesmall.Width = "500px";
privatesmall.Height = "200px";
privatesmall.ImagesDir = "../img/icons/";
privatesmall.PopupsDir = "../popups/";
privatesmall.CSSFile = "../css/wysiwyg.css";
privatesmall.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: white";
privatesmall.Toolbar[0] = new Array("bold", "italic", "underline","strikethrough","outdent","indent","createlink","removeformat","unorderedlist","orderedlist"); // small setup for toolbar 1
privatesmall.Toolbar[1] = ""; // disable toolbar 2
privatesmall.StatusBarEnabled = false;
privatesmall.InvertIELineBreaks = true;
privatesmall.ContextMenu = false;
