/**********************************************************************

	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 = "300";

// Name of the IFRAME (content editor).
rteName = "story";

// Name of the hidden form field.
rteFormName = "freeRTE_content";

// Height of the rich text editor.
rteHeight = "300px";

// Path to the images folder.
rteImagePath = "/images/buttons/";

// Path to templates
rteTemplatePath = "../popups/";

// Path to insert form popup.
rteHTMLPathInsertForm = rteTemplatePath + "insert_form.html";

// Path to insert checkbox popup.
rteHTMLPathInsertCheckbox = rteTemplatePath + "insert_checkbox.html";

// Path to insert radio button popup.
rteHTMLPathInsertRadiobutton = rteTemplatePath + "insert_radiobutton.html";

// Path to insert text area popup.
rteHTMLPathInsertTextArea = rteTemplatePath + "insert_textarea.html";

// Path to insert submit button popup.
rteHTMLPathInsertSubmit = rteTemplatePath + "/insert_submit.html";

// Path to insert image submit button popup.
rteHTMLPathInsertImageSubmit = rteTemplatePath + "insert_image_submit.html";

// Path to reset form button popup.

rteHTMLPathInsertReset = rteTemplatePath + "insert_reset.html";

// Path to insert hidden form field popup.

rteHTMLPathInsertHidden = rteTemplatePath + "insert_hidden.html";

// Path to insert password field popup.

rteHTMLPathInsertPassword = rteTemplatePath + "insert_password.html";

// Path to insert text field popup.

rteHTMLPathInsertText = rteTemplatePath + "insert_text.html";

// Path to insert table popup.

rteHTMLPathInsertTable = rteTemplatePath + "insert_table.html";

// Path to edit table properties popup.

rteHTMLPathEditTable = rteTemplatePath + "edit_table.html";

// Path to insert link popup.

rteHTMLPathInsertLink = rteTemplatePath + "insert_link.html";

// Path to edit link popup.

rteHTMLPathEditLink = rteTemplatePath + "edit_link.html";

// Path to insert image popup.

rteHTMLPathInsertImage = rteTemplatePath + "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 = false;

// 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 = false;

// Outdent Button.

rteOutdent = false;

// Undo Button.

rteUndo = true;

// Redo Button.

rteRedo = true;

// Cut, Copy & Paste Buttons.

rteCutCopyPaste = false;

// 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 = false;

// Select All of Rich Text Area Content.

rteSelectAll = false;

// Spell Checker.

rteSpellCheck = true;

// Show Preview Button.

rtePreviewMode = true;

// Show Code Edit Button.

rteCodeMode = false;

// Show Design Mode Button.

rteDesignMode = true;