/**********************************************************************
	Version: FreeRichTextEditor.com Version 1.00.
	License: http://creativecommons.org/licenses/by/2.5/
	Description: Configuration File.
	Author: Copyright (C) 2006  Steven Ewing
**********************************************************************/

// Width of the rich text editor.
rteWidth = "100%";
// Name of the IFRAME (content editor).
rteName = "RTEEditor";
// Name of the hidden form field.
rteFormName = "RTEContent";
// Height of the rich text editor.
rteHeight = "300px";
// Path to the images folder.
rteImagePath = "../resources/rte/images/";
// Path to insert form popup.
rteHTMLPathInsertForm = "../resources/rte/html/insert_form.html";
// Path to insert checkbox popup.
rteHTMLPathInsertCheckbox = "../resources/rte/html/insert_checkbox.html";
// Path to insert radio button popup.
rteHTMLPathInsertRadiobutton = "../resources/rte/html/insert_radiobutton.html";
// Path to insert text area popup.
rteHTMLPathInsertTextArea = "../resources/rte/html/insert_textarea.html";
// Path to insert submit button popup.
rteHTMLPathInsertSubmit = "../resources/rte/html/insert_submit.html";
// Path to insert image submit button popup.
rteHTMLPathInsertImageSubmit = "../resources/rte/html/insert_image_submit.html";
// Path to reset form button popup.
rteHTMLPathInsertReset = "../resources/rte/html/insert_reset.html";
// Path to insert hidden form field popup.
rteHTMLPathInsertHidden = "../resources/rte/html/insert_hidden.html";
// Path to insert password field popup.
rteHTMLPathInsertPassword = "../resources/rte/html/insert_password.html";
// Path to insert text field popup.
rteHTMLPathInsertText = "../resources/rte/html/insert_text.html";
// Path to insert table popup.
rteHTMLPathInsertTable = "../resources/rte/html/insert_table.html";
// Path to edit table properties popup.
rteHTMLPathEditTable = "../resources/rte/html/edit_table.html";
// Path to insert link popup.
rteHTMLPathInsertLink = "../resources/rte/html/insert_link.html";
// Path to edit link popup.
rteHTMLPathEditLink = "../resources/rte/html/edit_link.html";
// Path to insert image popup.
rteHTMLPathInsertImage = "../resources/rte/html/insert_image.html";
// Format Menu (H1, H2, H3 etc etc).
rteFormat = true;
// Font Face Menu (Arial, Verdana etc etc).
rteFontFace = true;
// Font Size Menu (1, 2, etc etc).
rteFontSize = true;
// Font Color Menu.
rteFontColor = true;
// Bold Text Button.
rteBold = true;
// Italicize Text Button.
rteItalic = true;
// Underline Text Button.
rteUnderline = true;
// Strikethrough Text Button.
rteStrikeThrough = true;
// Left Justify Button.
rteLeftAlign = true;
// Center Justify Button.
rteCenterAlign = true;
// Right Justify Button.
rteRightAlign = true;
// Full Justify Button.
rteFullAlign = true;
// Insert Horizontal Rule Button.
rteHorizontalRule = true;
// Superscript Text Button.
rteSuperscript = true;
// Subscript Text Button.
rteSubscript = true;
// Insert Hyperlink Button.
rteLink = true;
// Remove Hyperlink Button.
rteUnlink = true;
// Insert Image Button.
rteImages = true;
// Remove Formatting Button.
rteRemoveFormat = true;
// Table Formatting Buttons.
rteTables = true;
// Insert an ordered list Button.
rteOrderedList = true;
// Insert an unordered list Button.
rteUnorderedList = true;
// Indent Button.
rteIndent = true;
// Outdent Button.
rteOutdent = true;
// Undo Button.
rteUndo = true;
// Redo Button.
rteRedo = true;
// Cut, Copy & Paste Buttons.
rteCutCopyPaste = true;
// Insert form button.
rteInsertForm = false;
// Insert checkbox button.
rteInsertCheckbox = false;
// Insert radio button.
rteInsertRadio = false;
// Insert textarea.
rteInsertTextArea = false;
// Insert submit button.
rteInsertSubmit = false;
// Insert image submit button.
rteInsertImageSubmit = false;
// Insert reset button.
rteInsertReset = false;
// Insert hidden field.
rteInsertHidden = false;
// Insert password field.
rteInsertPassword = false;
// Insert text field.
rteInsertTextField = false;
// Print Rich Text Area Content.
rtePrint = true;
// Select All of Rich Text Area Content.
rteSelectAll = true;
// Spell Checker.
rteSpellCheck = true;
// Show Preview Button.
rtePreviewMode = true;
// Show Code Edit Button.
rteCodeMode = true;
// Show Design Mode Button.
rteDesignMode = true;