/********************************************************************
 * 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 = "includes/openwysiwyg/images/";
full.PopupsDir = "includes/openwysiwyg/popups/";
full.CSSFile = "includes/openwysiwyg/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 = "includes/openwysiwyg/addons/imagelibrary/insert_image.php";
full.ImagePopupWidth = 600;
full.ImagePopupHeight = 250;
// openFileLibrary addon implementation
full.FilePopupFile = "includes/openwysiwyg/addons/filelibrary/insert_file.php";
full.FilePopupWidth = 570;
full.FilePopupHeight = 245;




/*
 * Standard featured setup used the openImageLibrary addon
 */
var Standard = new WYSIWYG.Settings();
Standard.ImagesDir = "includes/openwysiwyg/images/";
Standard.PopupsDir = "includes/openwysiwyg/popups/";
Standard.CSSFile = "includes/openwysiwyg/styles/wysiwyg.css";
Standard.Width = "85%"; 
Standard.Height = "250px";
// customize toolbar buttons
Standard.addToolbarElement("font", 3, 1); 
Standard.addToolbarElement("fontsize", 3, 2);
Standard.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
Standard.ImagePopupFile = "includes/openwysiwyg/addons/imagelibrary/insert_image.php";
Standard.ImagePopupWidth = 600;
Standard.ImagePopupHeight = 250;
// openFileLibrary addon implementation
Standard.FilePopupFile = "includes/openwysiwyg/addons/filelibrary/insert_file.php";
Standard.FilePopupWidth = 570;
Standard.FilePopupHeight = 245;
Standard.Toolbar[0] = new Array("bold", "italic","seperator", "forecolor", "backcolor", "seperator","justifyfull", "justifyleft", "justifycenter", "justifyright", "seperator", "unorderedlist", "orderedlist","outdent", "indent", "seperator", "cut", "copy", "paste","removeformat","seperator", "undo", "redo", "seperator", "print","viewSource","help");
Standard.Toolbar[1] = new Array("font", "fontsize","headings","seperator","subscript", "superscript", "seperator","hr", "inserttable", "insertimage", "createlink");
Standard.Toolbar[2]="";		

/*
 * Small Setup Example
 */
var small = new WYSIWYG.Settings();
small.Width = "350px";
small.Height = "100px";
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;
