
/*
 * 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);
// openImageLibrary addon implementation
full.DefaultStyle = "font-family: Tahoma; font-size: 11px; background-color: #ffffff; direction:rtl;";
full.ImagePopupFile = "includes/editor/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: Tahoma; font-size: 12px; background-color: #ffffff; direction:rtl;";
small.Toolbar[0] = new Array("font", "fontsize", "bold", "italic", "underline", "justifyright", "justifycenter", "justifyleft", "farsi"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;
