function configHtmlArea () {	this.version = "3.0";	this.width = "auto";	this.height = "auto";	// the next parameter specifies whether the toolbar should be included	// in the size or not.	this.sizeIncludesToolbar = true;	this.bodyStyle = "background-color: #fff; font-family: verdana,sans-serif";	this.editorURL = "";	// URL-s	this.imgURL = "http://media.macrobyte.net/htmlarea3/images/";	this.popupURL = "http://corinne.truerwords.net/htmlarea/";	this.debug = 0;	this.replaceNextLines = 0;	this.plainTextInput = 0;	this.toolbar = [ [ "formatblock", "space"],			 [ "bold", "italic", "underline", "separator" ],			 [ "strikethrough", "subscript", "superscript", "linebreak" ],			 [ "justifyleft", "justifycenter", "justifyright", "justifyfull", "separator" ],			 [ "orderedlist", "unorderedlist", "outdent", "indent", "separator" ],			 [ "forecolor", "backcolor", "textindicator", "separator" ],			 [ "horizontalrule", "createlink", "insertimage", "inserttable", "htmlmode", "separator" ],			 [ "popupeditor", "about" ]		];	this.fontname = {		"Arial":           'arial,helvetica,sans-serif',		"Courier New":     'courier new,courier,monospace',		"Georgia":         'georgia,times new roman,times,serif',		"Tahoma":          'tahoma,arial,helvetica,sans-serif',		"Times New Roman": 'times new roman,times,serif',		"Verdana":         'verdana,arial,helvetica,sans-serif',		"impact":          'impact',		"WingDings":       'wingdings'	};	this.fontsize = {		"1 (8 pt)":  "1",		"2 (10 pt)": "2",		"3 (12 pt)": "3",		"4 (14 pt)": "4",		"5 (18 pt)": "5",		"6 (24 pt)": "6",		"7 (36 pt)": "7"	};	this.formatblock = {		"Heading 1": "h1",		"Heading 2": "h2",		"Heading 3": "h3",		"Heading 4": "h4",		"Heading 5": "h5",		"Heading 6": "h6",		"Normal": "p",		"Address": "address",		"Formatted": "pre"	};	//      ID              CMD                      ToolTip               Icon                        Enabled in text mode?	this.btnList = {		bold:           ["Bold",                 "Bold",               "ed_format_bold.gif",       false],		italic:         ["Italic",               "Italic",             "ed_format_italic.gif",     false],		underline:      ["Underline",            "Underline",          "ed_format_underline.gif",  false],		strikethrough:  ["StrikeThrough",        "Strikethrough",      "ed_format_strike.gif",     false],		subscript:      ["SubScript",            "Subscript",          "ed_format_sub.gif",        false],		superscript:    ["SuperScript",          "Superscript",        "ed_format_sup.gif",        false],		justifyleft:    ["JustifyLeft",          "Justify Left",       "ed_align_left.gif",        false],		justifycenter:  ["JustifyCenter",        "Justify Center",     "ed_align_center.gif",      false],		justifyright:   ["JustifyRight",         "Justify Right",      "ed_align_right.gif",       false],		justifyfull:    ["JustifyFull",          "Justify Full",       "ed_align_justify.gif",     false],		orderedlist:    ["InsertOrderedList",    "Ordered List",       "ed_list_num.gif",          false],		unorderedlist:  ["InsertUnorderedList",  "Bulleted List",      "ed_list_bullet.gif",       false],		outdent:        ["Outdent",              "Decrease Indent",    "ed_indent_less.gif",       false],		indent:         ["Indent",               "Increase Indent",    "ed_indent_more.gif",       false],		forecolor:      ["ForeColor",            "Font Color",         "ed_color_fg.gif",          false],		backcolor:      ["BackColor",            "Background Color",   "ed_color_bg.gif",          false],		horizontalrule: ["InsertHorizontalRule", "Horizontal Rule",    "ed_hr.gif",                false],		createlink:     ["CreateLink",           "Insert Web Link",    "ed_link.gif",              false],		insertimage:    ["InsertImage",          "Insert Image",       "ed_image.gif",             false],		inserttable:    ["InsertTable",          "Insert Table",       "insert_table.gif",         false],		htmlmode:       ["HtmlMode",             "Toggle HTML Source", "ed_html.gif",              true],		popupeditor:    ["popupeditor",          "Enlarge Editor",     "fullscreen_maximize.gif",  true],		about:          ["about",                "About this editor",  "ed_about.gif",             true],		help:           ["showhelp",             "Help using editor",  "ed_help.gif",              true]	};	// initialize tooltips from the I18N module	for (var i in this.btnList) {		var btn = this.btnList[i];		if (typeof HTMLArea.I18N.tooltips[i] != "undefined") {			btn[1] = HTMLArea.I18N.tooltips[i];		}	}}
