/********************************************************************
 * 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/icons/";
//full.PopupsDir = "popups/";
// full.CSSFile = "../styles/wysiwyg.css";
full.Width = "574px"; 
full.Height = "300px";
// customize toolbar buttons
// full.addToolbarElement("seperator", 2, 24);
// full.addToolbarElement("outdent", 2, 25); 
// full.addToolbarElement("indent", 2, 26);
// openImageLibrary addon implementation
full.ImagePopupFile = "addons/imagelibrary/insert_image.php";
full.ImagePopupWidth = 750;
full.ImagePopupHeight = 245;
full.DefaultStyle = "background-color: #FFFFFF; border: solid 1px #D3D3D3; font-family: Arial; font-size: 9pt; color: #555555; text-align: justify;";


/*
 * newsl featured setup used the openImageLibrary addon
 */
var newsl = new WYSIWYG.Settings();
//newsl.ImagesDir = "images/icons/";
//newsl.PopupsDir = "popups/";
// newsl.CSSFile = "../styles/main.css";
newsl.Width = "574px"; 
newsl.Height = "300px";
// customize toolbar buttons
// newsl.addToolbarElement("seperator", 2, 24);
// newsl.addToolbarElement("outdent", 2, 25); 
// newsl.addToolbarElement("indent", 2, 26);
// openImageLibrary addon implementation
newsl.ImagePopupFile = "addons/imagelibrary/insert_image.php";
newsl.ImagePopupWidth = 750;
newsl.ImagePopupHeight = 245;
newsl.DefaultStyle = "background-color: #FFFFFF; font:8pt/11pt verdana; color: #000000;";
newsl.addToolbarElement("preview", 2, 20); 



/*
 * Small Setup Example
 */
var small = new WYSIWYG.Settings();
small.ImagesDir = "images/icons/";
small.PopupsDir = "popups/";
small.Width = "180px";
small.Height = "350px";
small.DefaultStyle = "background-color: #FFFFFF; border: solid 1px #D3D3D3; font-family: Arial; font-size: 9pt; color: #555555; text-align: justify;";
small.Toolbar[0] = new Array("justifyleft", "justifycenter", "justifyright", "justifyfull", "forecolor", "seperator", "unorderedlist", "orderedlist"); // small setup for toolbar 1
small.Toolbar[1] = new Array("bold", "italic", "underline", "strikethrough", "seperator", "insertimage", "createlink", "insertspecialchar"); // disable toolbar 2
small.StatusBarEnabled = true;
// openImageLibrary addon implementation
small.ImagePopupFile = "addons/imagelibrary/insert_image.php";
small.ImagePopupWidth = 750;
small.ImagePopupHeight = 245;



/*
 * blog Setup Example
 */
var blog = new WYSIWYG.Settings();
blog.ImagesDir = "images/icons/";
blog.PopupsDir = "popups/";
blog.Width = "100%";
blog.Height = "350px";
blog.DefaultStyle = "background-color: #FFFFFF; border: solid 1px #D3D3D3; font-family: Arial; font-size: 9pt; color: #555555; text-align: justify;";
blog.Toolbar[0] = new Array("justifyleft", "justifycenter", "justifyright", "justifyfull", "seperator", "unorderedlist", "orderedlist", "indent", "outdent", "seperator", "bold", "italic", "underline", "strikethrough", "seperator", "forecolor", "seperator", "subscript", "superscript", "seperator", "cut", "copy", "paste", "removeformat", "seperator", "insertspecialchar", "createlink", "insertimage"); // blog setup for toolbar 1
blog.Toolbar[1] = new Array(); // disable toolbar 2
blog.StatusBarEnabled = false;
// openImageLibrary addon implementation
blog.ImagePopupFile = "addons/imagelibraryBLOG/insert_image.php";
blog.ImagePopupWidth = 750;
blog.ImagePopupHeight = 245;

