/********************************************************************
 * 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;

/*
 * Small Setup Example
 */
var small = new WYSIWYG.Settings();
small.Width = "350px";
small.Height = "100px";
small.DefaultStyle = "font-family: Arial; font-size: 0.8em; background-color: #AA99AA";
small.Toolbar[0] = new Array("font", "fontsize", "bold", "italic", "underline"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;


/*
 * ADMIN FRMT
 */
var admin = new WYSIWYG.Settings();
admin.DefaultStyle = "font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 0.8em; color: #333333; line-height: 15px;";
admin.Width = "535px";
admin.Height = "400px";
// openImageLibrary addon implementation
admin.ImagePopupFile = "/openwysiwyg/addons/imagelibrary/insert_image.php";
admin.ImagePopupWidth = 600;
admin.ImagePopupHeight = 245;
admin.InvertIELineBreaks = false;
//admin.InvertMozLineBreaks = true;
admin.Toolbar[0] = new Array (
			"font",
			"fontsize",
			"headings",
			"bold",
			"italic",
			"underline",
			"strikethrough",
			"seperator",
			"forecolor",
			"backcolor",
			"seperator",
			"justifyfull",
			"justifyleft",
			"justifycenter",
			"justifyright",
			"seperator",
			"unorderedlist",
			"orderedlist");
admin.Toolbar[1] = new Array (
			"subscript", 
			"superscript", 
			"seperator", 
			"cut", 
			"copy", 
			"paste",
			"removeformat",
			"seperator", 
			"undo", 
			"redo", 
			"seperator", 
			"inserttable", 
			"insertimage", 
			"createlink", 
			"seperator",  
			"preview", 
			"print",
			"seperator", 
			"viewSource",
			"seperator", 
			"help",
			"seperator",
			"outdent", 
			"indent"
		);

//admin.ImagesDir = "/asvp/include/openwysiwyg/images/";
//admin.PopupsDir = "/asvp/include/openwysiwyg/popups/";
//admin.CSSFile = "/asvp/include/openwysiwyg/styles/wysiwyg.css";

/*
 * Forum FRMT
 */
var forum = new WYSIWYG.Settings();
forum.DefaultStyle = "font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 0.8em; color: #333333; line-height: 15px;";
forum.Width = "535px";
forum.Height = "300px";
// openImageLibrary addon implementation
forum.ImagePopupFile = "/openwysiwyg/addons/imagelibrary/insert_image.php";
forum.ImagePopupWidth = 600;
forum.ImagePopupHeight = 245;
forum.InvertIELineBreaks = false;
//forum.InvertMozLineBreaks = true;
forum.Toolbar[0] = new Array (
			"bold",
			"italic",
			"underline",
			"strikethrough",
			"seperator",
			"forecolor",
			"backcolor",
			"seperator",
			"justifyfull",
			"justifyleft",
			"justifycenter",
			"justifyright",
			"seperator",
			"unorderedlist",
			"orderedlist");
forum.Toolbar[1] = new Array (
			"subscript", 
			"superscript", 
			"seperator", 
			"cut", 
			"copy", 
			"paste",
			"removeformat",
			"seperator", 
			"undo", 
			"redo", 
			"seperator", 
			"inserttable", 
			"insertimage", 
			"createlink", 
			"seperator",  
			"preview", 
			"print",
			"seperator", 
			"viewSource",
			"seperator", 
			"help",
			"seperator",
			"outdent", 
			"indent"
		);

