]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/themes/advanced/editor_template.js
WordPress 3.5.1-scripts
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / themes / advanced / editor_template.js
index be0e234ee42e12f5a344b6b6acce0d097ccefc05..4b8d563757108b88cf121e4d72894b33cb12da50 100644 (file)
@@ -1,1521 +1 @@
-/**
- * $Id: editor_template_src.js 256 2007-04-24 09:03:20Z spocke $
- *
- * @author Moxiecode
- * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
- */
-
-/* Import theme specific language pack */
-tinyMCE.importThemeLanguagePack('advanced');
-
-var TinyMCE_AdvancedTheme = {
-       // Private theme fields
-       _defColors : "000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,008000,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF",
-       _autoImportCSSClasses : true,
-       _resizer : {},
-       _buttons : [
-               // Control id, button img, button title, command, user_interface, value
-               ['bold', '{$lang_bold_img}', 'lang_bold_desc', 'Bold'],
-               ['italic', '{$lang_italic_img}', 'lang_italic_desc', 'Italic'],
-               ['underline', '{$lang_underline_img}', 'lang_underline_desc', 'Underline'],
-               ['strikethrough', 'strikethrough.gif', 'lang_striketrough_desc', 'Strikethrough'],
-               ['justifyleft', 'justifyleft.gif', 'lang_justifyleft_desc', 'JustifyLeft'],
-               ['justifycenter', 'justifycenter.gif', 'lang_justifycenter_desc', 'JustifyCenter'],
-               ['justifyright', 'justifyright.gif', 'lang_justifyright_desc', 'JustifyRight'],
-               ['justifyfull', 'justifyfull.gif', 'lang_justifyfull_desc', 'JustifyFull'],
-               ['bullist', 'bullist.gif', 'lang_bullist_desc', 'InsertUnorderedList'],
-               ['numlist', 'numlist.gif', 'lang_numlist_desc', 'InsertOrderedList'],
-               ['outdent', 'outdent.gif', 'lang_outdent_desc', 'Outdent'],
-               ['indent', 'indent.gif', 'lang_indent_desc', 'Indent'],
-               ['cut', 'cut.gif', 'lang_cut_desc', 'Cut'],
-               ['copy', 'copy.gif', 'lang_copy_desc', 'Copy'],
-               ['paste', 'paste.gif', 'lang_paste_desc', 'Paste'],
-               ['undo', 'undo.gif', 'lang_undo_desc', 'Undo'],
-               ['redo', 'redo.gif', 'lang_redo_desc', 'Redo'],
-               ['link', 'link.gif', 'lang_link_desc', 'mceLink', true],
-               ['unlink', 'unlink.gif', 'lang_unlink_desc', 'unlink'],
-               ['image', 'image.gif', 'lang_image_desc', 'mceImage', true],
-               ['cleanup', 'cleanup.gif', 'lang_cleanup_desc', 'mceCleanup'],
-               ['help', 'help.gif', 'lang_help_desc', 'mceHelp'],
-               ['code', 'code.gif', 'lang_theme_code_desc', 'mceCodeEditor'],
-               ['hr', 'hr.gif', 'lang_theme_hr_desc', 'inserthorizontalrule'],
-               ['removeformat', 'removeformat.gif', 'lang_theme_removeformat_desc', 'removeformat'],
-               ['sub', 'sub.gif', 'lang_theme_sub_desc', 'subscript'],
-               ['sup', 'sup.gif', 'lang_theme_sup_desc', 'superscript'],
-               ['forecolor', 'forecolor.gif', 'lang_theme_forecolor_desc', 'forecolor', true],
-               ['forecolorpicker', 'forecolor.gif', 'lang_theme_forecolor_desc', 'forecolorpicker', true],
-               ['backcolor', 'backcolor.gif', 'lang_theme_backcolor_desc', 'HiliteColor', true],
-               ['backcolorpicker', 'backcolor.gif', 'lang_theme_backcolor_desc', 'backcolorpicker', true],
-               ['charmap', 'charmap.gif', 'lang_theme_charmap_desc', 'mceCharMap'],
-               ['visualaid', 'visualaid.gif', 'lang_theme_visualaid_desc', 'mceToggleVisualAid'],
-               ['anchor', 'anchor.gif', 'lang_theme_anchor_desc', 'mceInsertAnchor'],
-               ['newdocument', 'newdocument.gif', 'lang_newdocument_desc', 'mceNewDocument']
-       ],
-
-       _buttonMap : 'anchor,backcolor,bold,bullist,charmap,cleanup,code,copy,cut,forecolor,help,hr,image,indent,italic,justifycenter,justifyfull,justifyleft,justifyright,link,newdocument,numlist,outdent,paste,redo,removeformat,strikethrough,sub,sup,underline,undo,unlink,visualaid,advhr,ltr,rtl,emotions,flash,fullpage,fullscreen,iespell,insertdate,inserttime,pastetext,pasteword,selectall,preview,print,save,replace,search,table,cell_props,delete_col,delete_row,col_after,col_before,row_after,row_before,merge_cells,row_props,split_cells,delete_table',
-
-       /**
-        * Returns HTML code for the specificed control.
-        */
-       getControlHTML : function(button_name) {
-               var i, x, but;
-
-               // Lookup button in button list
-               for (i=0; i<TinyMCE_AdvancedTheme._buttons.length; i++) {
-                       but = TinyMCE_AdvancedTheme._buttons[i];
-
-                       if (but[0] == button_name && (button_name == "forecolor" || button_name == "backcolor"))
-                               return tinyMCE.getMenuButtonHTML(but[0], but[2], '{$themeurl}/images/' + but[1], but[3] + "Menu", but[3], (but.length > 4 ? but[4] : false), (but.length > 5 ? but[5] : null));
-
-                       if (but[0] == button_name)
-                               return tinyMCE.getButtonHTML(but[0], but[2], '{$themeurl}/images/' + but[1], but[3], (but.length > 4 ? but[4] : false), (but.length > 5 ? but[5] : null));
-               }
-
-               // Custom controlls other than buttons
-               switch (button_name) {
-                       case "formatselect":
-                               var html = '<select id="{$editor_id}_formatSelect" name="{$editor_id}_formatSelect" onfocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'FormatBlock\',false,this.options[this.selectedIndex].value);" class="mceSelectList">';
-                               var formats = tinyMCE.getParam("theme_advanced_blockformats", "p,address,pre,h1,h2,h3,h4,h5,h6", true).split(',');
-                               var lookup = [
-                                       ['p', '{$lang_theme_paragraph}'],
-                                       ['address', '{$lang_theme_address}'],
-                                       ['pre', '{$lang_theme_pre}'],
-                                       ['h1', '{$lang_theme_h1}'],
-                                       ['h2', '{$lang_theme_h2}'],
-                                       ['h3', '{$lang_theme_h3}'],
-                                       ['h4', '{$lang_theme_h4}'],
-                                       ['h5', '{$lang_theme_h5}'],
-                                       ['h6', '{$lang_theme_h6}'],
-                                       ['div', '{$lang_theme_div}'],
-                                       ['blockquote', '{$lang_theme_blockquote}'],
-                                       ['code', '{$lang_theme_code}'],
-                                       ['dt', '{$lang_theme_dt}'],
-                                       ['dd', '{$lang_theme_dd}'],
-                                       ['samp', '{$lang_theme_samp}']
-                               ];
-
-                               html += '<option value="">{$lang_theme_block}</option>';
-
-                               // Build format select
-                               for (var i=0; i<formats.length; i++) {
-                                       for (var x=0; x<lookup.length; x++) {
-                                               if (formats[i] == lookup[x][0])
-                                                       html += '<option value="&lt;' + lookup[x][0] + '&gt;">' + lookup[x][1] + '</option>';
-                                       }
-                               }
-
-                               html += '</select>';
-
-                               return html;
-
-                       case "styleselect":
-                               return '<select id="{$editor_id}_styleSelect" onmousedown="tinyMCE.themes.advanced._setupCSSClasses(\'{$editor_id}\');" name="{$editor_id}_styleSelect" onfocus="tinyMCE.addSelectAccessibility(event,this,window);" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceSetCSSClass\',false,this.options[this.selectedIndex].value);" class="mceSelectList">{$style_select_options}</select>';
-
-                       case "fontselect":
-                               var fontHTML = '<select id="{$editor_id}_fontNameSelect" name="{$editor_id}_fontNameSelect" onfocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'FontName\',false,this.options[this.selectedIndex].value);" class="mceSelectList"><option value="">{$lang_theme_fontdefault}</option>';
-                               var iFonts = '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';
-                               var nFonts = 'Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sand;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats';
-                               var fonts = tinyMCE.getParam("theme_advanced_fonts", nFonts).split(';');
-                               for (i=0; i<fonts.length; i++) {
-                                       if (fonts[i] != '') {
-                                               var parts = fonts[i].split('=');
-                                               fontHTML += '<option value="' + parts[1] + '">' + parts[0] + '</option>';
-                                       }
-                               }
-
-                               fontHTML += '</select>';
-                               return fontHTML;
-
-                       case "fontsizeselect":
-                               return '<select id="{$editor_id}_fontSizeSelect" name="{$editor_id}_fontSizeSelect" onfocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'FontSize\',false,this.options[this.selectedIndex].value);" class="mceSelectList">'+
-                                               '<option value="0">{$lang_theme_font_size}</option>'+
-                                               '<option value="1">1 (8 pt)</option>'+
-                                               '<option value="2">2 (10 pt)</option>'+
-                                               '<option value="3">3 (12 pt)</option>'+
-                                               '<option value="4">4 (14 pt)</option>'+
-                                               '<option value="5">5 (18 pt)</option>'+
-                                               '<option value="6">6 (24 pt)</option>'+
-                                               '<option value="7">7 (36 pt)</option>'+
-                                               '</select>';
-
-                       case "|":
-                       case "separator":
-                               return '<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" alt="" />';
-
-                       case "spacer":
-                               return '<img src="{$themeurl}/images/separator.gif" width="2" height="15" border="0" class="mceSeparatorLine" style="vertical-align: middle" alt="" />';
-
-                       case "rowseparator":
-                               return '<br />';
-               }
-
-               return "";
-       },
-
-       /**
-        * Theme specific execcommand handling.
-        */
-       execCommand : function(editor_id, element, command, user_interface, value) {
-               switch (command) {
-                       case 'mceHelp':
-                               tinyMCE.openWindow({
-                                       file : 'about.htm',
-                                       width : 480,
-                                       height : 380
-                               }, {
-                                       tinymce_version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion,
-                                       tinymce_releasedate : tinyMCE.releaseDate,
-                                       inline : "yes"
-                               });
-                       return true;
-
-                       case "mceLink":
-                               var inst = tinyMCE.getInstanceById(editor_id);
-                               var doc = inst.getDoc();
-                               var selectedText = "";
-
-                               if (tinyMCE.isMSIE) {
-                                       var rng = doc.selection.createRange();
-                                       selectedText = rng.text;
-                               } else
-                                       selectedText = inst.getSel().toString();
-
-                               if (!tinyMCE.linkElement) {
-                                       if ((tinyMCE.selectedElement.nodeName.toLowerCase() != "img") && (selectedText.length <= 0))
-                                               return true;
-                               }
-
-                               var href = "", target = "", title = "", onclick = "", action = "insert", style_class = "";
-
-                               if (tinyMCE.selectedElement.nodeName.toLowerCase() == "a")
-                                       tinyMCE.linkElement = tinyMCE.selectedElement;
-
-                               // Is anchor not a link
-                               if (tinyMCE.linkElement != null && tinyMCE.getAttrib(tinyMCE.linkElement, 'href') == "")
-                                       tinyMCE.linkElement = null;
-
-                               if (tinyMCE.linkElement) {
-                                       href = tinyMCE.getAttrib(tinyMCE.linkElement, 'href');
-                                       target = tinyMCE.getAttrib(tinyMCE.linkElement, 'target');
-                                       title = tinyMCE.getAttrib(tinyMCE.linkElement, 'title');
-                                       onclick = tinyMCE.getAttrib(tinyMCE.linkElement, 'onclick');
-                                       style_class = tinyMCE.getAttrib(tinyMCE.linkElement, 'class');
-
-                                       // Try old onclick to if copy/pasted content
-                                       if (onclick == "")
-                                               onclick = tinyMCE.getAttrib(tinyMCE.linkElement, 'onclick');
-
-                                       onclick = tinyMCE.cleanupEventStr(onclick);
-
-                                       href = eval(tinyMCE.settings['urlconverter_callback'] + "(href, tinyMCE.linkElement, true);");
-
-                                       // Use mce_href if defined
-                                       mceRealHref = tinyMCE.getAttrib(tinyMCE.linkElement, 'mce_href');
-                                       if (mceRealHref != "") {
-                                               href = mceRealHref;
-
-                                               if (tinyMCE.getParam('convert_urls'))
-                                                       href = eval(tinyMCE.settings['urlconverter_callback'] + "(href, tinyMCE.linkElement, true);");
-                                       }
-
-                                       action = "update";
-                               }
-
-                               var template = new Array();
-
-                               template['file'] = 'link.htm';
-                               template['width'] = 310;
-                               template['height'] = 200;
-
-                               // Language specific width and height addons
-                               template['width'] += tinyMCE.getLang('lang_insert_link_delta_width', 0);
-                               template['height'] += tinyMCE.getLang('lang_insert_link_delta_height', 0);
-
-                               if (inst.settings['insertlink_callback']) {
-                                       var returnVal = eval(inst.settings['insertlink_callback'] + "(href, target, title, onclick, action, style_class);");
-                                       if (returnVal && returnVal['href'])
-                                               TinyMCE_AdvancedTheme._insertLink(returnVal['href'], returnVal['target'], returnVal['title'], returnVal['onclick'], returnVal['style_class']);
-                               } else {
-                                       tinyMCE.openWindow(template, {href : href, target : target, title : title, onclick : onclick, action : action, className : style_class, inline : "yes"});
-                               }
-
-                               return true;
-
-                       case "mceImage":
-                               var src = "", alt = "", border = "", hspace = "", vspace = "", width = "", height = "", align = "";
-                               var title = "", onmouseover = "", onmouseout = "", action = "insert";
-                               var img = tinyMCE.imgElement;
-                               var inst = tinyMCE.getInstanceById(editor_id);
-
-                               if (tinyMCE.selectedElement != null && tinyMCE.selectedElement.nodeName.toLowerCase() == "img") {
-                                       img = tinyMCE.selectedElement;
-                                       tinyMCE.imgElement = img;
-                               }
-
-                               if (img) {
-                                       // Is it a internal MCE visual aid image, then skip this one.
-                                       if (tinyMCE.getAttrib(img, 'name').indexOf('mce_') == 0)
-                                               return true;
-
-                                       src = tinyMCE.getAttrib(img, 'src');
-                                       alt = tinyMCE.getAttrib(img, 'alt');
-
-                                       // Try polling out the title
-                                       if (alt == "")
-                                               alt = tinyMCE.getAttrib(img, 'title');
-
-                                       // Fix width/height attributes if the styles is specified
-                                       if (tinyMCE.isGecko) {
-                                               var w = img.style.width;
-                                               if (w != null && w != "")
-                                                       img.setAttribute("width", w);
-
-                                               var h = img.style.height;
-                                               if (h != null && h != "")
-                                                       img.setAttribute("height", h);
-                                       }
-
-                                       border = tinyMCE.getAttrib(img, 'border');
-                                       hspace = tinyMCE.getAttrib(img, 'hspace');
-                                       vspace = tinyMCE.getAttrib(img, 'vspace');
-                                       width = tinyMCE.getAttrib(img, 'width');
-                                       height = tinyMCE.getAttrib(img, 'height');
-                                       align = tinyMCE.getAttrib(img, 'align');
-                                       onmouseover = tinyMCE.getAttrib(img, 'onmouseover');
-                                       onmouseout = tinyMCE.getAttrib(img, 'onmouseout');
-                                       title = tinyMCE.getAttrib(img, 'title');
-
-                                       // Is realy specified?
-                                       if (tinyMCE.isMSIE) {
-                                               width = img.attributes['width'].specified ? width : "";
-                                               height = img.attributes['height'].specified ? height : "";
-                                       }
-
-                                       //onmouseover = tinyMCE.getImageSrc(tinyMCE.cleanupEventStr(onmouseover));
-                                       //onmouseout = tinyMCE.getImageSrc(tinyMCE.cleanupEventStr(onmouseout));
-
-                                       src = eval(tinyMCE.settings['urlconverter_callback'] + "(src, img, true);");
-
-                                       // Use mce_src if defined
-                                       mceRealSrc = tinyMCE.getAttrib(img, 'mce_src');
-                                       if (mceRealSrc != "") {
-                                               src = mceRealSrc;
-
-                                               if (tinyMCE.getParam('convert_urls'))
-                                                       src = eval(tinyMCE.settings['urlconverter_callback'] + "(src, img, true);");
-                                       }
-
-                                       //if (onmouseover != "")
-                                       //      onmouseover = eval(tinyMCE.settings['urlconverter_callback'] + "(onmouseover, img, true);");
-
-                                       //if (onmouseout != "")
-                                       //      onmouseout = eval(tinyMCE.settings['urlconverter_callback'] + "(onmouseout, img, true);");
-
-                                       action = "update";
-                               }
-
-                               var template = new Array();
-
-                               template['file'] = 'image.htm?src={$src}';
-                               template['width'] = 355;
-                               template['height'] = 265 + (tinyMCE.isMSIE ? 25 : 0);
-
-                               // Language specific width and height addons
-                               template['width'] += tinyMCE.getLang('lang_insert_image_delta_width', 0);
-                               template['height'] += tinyMCE.getLang('lang_insert_image_delta_height', 0);
-
-                               if (inst.settings['insertimage_callback']) {
-                                       var returnVal = eval(inst.settings['insertimage_callback'] + "(src, alt, border, hspace, vspace, width, height, align, title, onmouseover, onmouseout, action);");
-                                       if (returnVal && returnVal['src'])
-                                               TinyMCE_AdvancedTheme._insertImage(returnVal['src'], returnVal['alt'], returnVal['border'], returnVal['hspace'], returnVal['vspace'], returnVal['width'], returnVal['height'], returnVal['align'], returnVal['title'], returnVal['onmouseover'], returnVal['onmouseout']);
-                               } else
-                                       tinyMCE.openWindow(template, {src : src, alt : alt, border : border, hspace : hspace, vspace : vspace, width : width, height : height, align : align, title : title, onmouseover : onmouseover, onmouseout : onmouseout, action : action, inline : "yes"});
-
-                               return true;
-
-                       case "forecolor":
-                               var fcp = new TinyMCE_Layer(editor_id + '_fcPreview', false), p, img, elm;
-
-                               TinyMCE_AdvancedTheme._hideMenus(editor_id);
-
-                               if (!fcp.exists()) {
-                                       fcp.create('div', 'mceColorPreview', document.getElementById(editor_id + '_toolbar'));
-                                       elm = fcp.getElement();
-                                       elm._editor_id = editor_id;
-                                       elm._command = "forecolor";
-                                       elm._switchId = editor_id + "_forecolor";
-                                       tinyMCE.addEvent(elm, 'click', TinyMCE_AdvancedTheme._handleMenuEvent);
-                                       tinyMCE.addEvent(elm, 'mouseover', TinyMCE_AdvancedTheme._handleMenuEvent);
-                                       tinyMCE.addEvent(elm, 'mouseout', TinyMCE_AdvancedTheme._handleMenuEvent);
-                               }
-
-                               img = tinyMCE.selectNodes(document.getElementById(editor_id + "_forecolor"), function(n) {return n.nodeName == "IMG";})[0];
-                               p = tinyMCE.getAbsPosition(img, document.getElementById(editor_id + '_toolbar'));
-
-                               fcp.moveTo(p.absLeft, p.absTop);
-                               fcp.getElement().style.backgroundColor = value != null ? value : tinyMCE.getInstanceById(editor_id).foreColor;
-                               fcp.show();
-
-                               return false;
-
-                       case "forecolorpicker":
-                               this._pickColor(editor_id, 'forecolor');
-                               return true;
-
-                       case "forecolorMenu":
-                               TinyMCE_AdvancedTheme._hideMenus(editor_id);
-
-                               // Create color layer
-                               var ml = new TinyMCE_Layer(editor_id + '_fcMenu');
-
-                               if (!ml.exists())
-                                       ml.create('div', 'mceMenu', document.body, TinyMCE_AdvancedTheme._getColorHTML(editor_id, 'theme_advanced_text_colors', 'forecolor'));
-
-                               tinyMCE.switchClass(editor_id + '_forecolor', 'mceMenuButtonFocus');
-                               ml.moveRelativeTo(document.getElementById(editor_id + "_forecolor"), 'bl');
-
-                               ml.moveBy(tinyMCE.isMSIE && !tinyMCE.isOpera ? -1 : 1, -1);
-
-                               if (tinyMCE.isOpera)
-                                       ml.moveBy(0, -2);
-
-                               ml.show();
-                       return true;
-
-                       case "HiliteColor":
-                               var bcp = new TinyMCE_Layer(editor_id + '_bcPreview', false), p, img;
-
-                               TinyMCE_AdvancedTheme._hideMenus(editor_id);
-
-                               if (!bcp.exists()) {
-                                       bcp.create('div', 'mceColorPreview', document.getElementById(editor_id + '_toolbar'));
-                                       elm = bcp.getElement();
-                                       elm._editor_id = editor_id;
-                                       elm._command = "HiliteColor";
-                                       elm._switchId = editor_id + "_backcolor";
-                                       tinyMCE.addEvent(elm, 'click', TinyMCE_AdvancedTheme._handleMenuEvent);
-                                       tinyMCE.addEvent(elm, 'mouseover', TinyMCE_AdvancedTheme._handleMenuEvent);
-                                       tinyMCE.addEvent(elm, 'mouseout', TinyMCE_AdvancedTheme._handleMenuEvent);
-                               }
-
-                               img = tinyMCE.selectNodes(document.getElementById(editor_id + "_backcolor"), function(n) {return n.nodeName == "IMG";})[0];
-                               p = tinyMCE.getAbsPosition(img, document.getElementById(editor_id + '_toolbar'));
-
-                               bcp.moveTo(p.absLeft, p.absTop);
-                               bcp.getElement().style.backgroundColor = value != null ? value : tinyMCE.getInstanceById(editor_id).backColor;
-                               bcp.show();
-
-                               return false;
-
-                       case "HiliteColorMenu":
-                               TinyMCE_AdvancedTheme._hideMenus(editor_id);
-
-                               // Create color layer
-                               var ml = new TinyMCE_Layer(editor_id + '_bcMenu');
-
-                               if (!ml.exists())
-                                       ml.create('div', 'mceMenu', document.body, TinyMCE_AdvancedTheme._getColorHTML(editor_id, 'theme_advanced_background_colors', 'HiliteColor'));
-
-                               tinyMCE.switchClass(editor_id + '_backcolor', 'mceMenuButtonFocus');
-                               ml.moveRelativeTo(document.getElementById(editor_id + "_backcolor"), 'bl');
-
-                               ml.moveBy(tinyMCE.isMSIE && !tinyMCE.isOpera ? -1 : 1, -1);
-
-                               if (tinyMCE.isOpera)
-                                       ml.moveBy(0, -2);
-
-                               ml.show();
-                       return true;
-       
-                       case "backcolorpicker":
-                               this._pickColor(editor_id, 'HiliteColor');
-                               return true;
-
-                       case "mceColorPicker":
-                               if (user_interface) {
-                                       var template = [];
-       
-                                       if (!value['callback'] && !value['color'])
-                                               value['color'] = value['document'].getElementById(value['element_id']).value;
-
-                                       template['file'] = 'color_picker.htm';
-                                       template['width'] = 380;
-                                       template['height'] = 250;
-                                       template['close_previous'] = "no";
-
-                                       template['width'] += tinyMCE.getLang('lang_theme_advanced_colorpicker_delta_width', 0);
-                                       template['height'] += tinyMCE.getLang('lang_theme_advanced_colorpicker_delta_height', 0);
-
-                                       if (typeof(value['store_selection']) == "undefined")
-                                               value['store_selection'] = true;
-
-                                       tinyMCE.lastColorPickerValue = value;
-                                       tinyMCE.openWindow(template, {editor_id : editor_id, mce_store_selection : value['store_selection'], inline : "yes", command : "mceColorPicker", input_color : value['color']});
-                               } else {
-                                       var savedVal = tinyMCE.lastColorPickerValue, elm;
-
-                                       if (savedVal['callback']) {
-                                               savedVal['callback'](value);
-                                               return true;
-                                       }
-
-                                       elm = savedVal['document'].getElementById(savedVal['element_id']);
-                                       elm.value = value;
-
-                                       if (elm.onchange != null && elm.onchange != '')
-                                               eval('elm.onchange();');
-                               }
-                       return true;
-
-                       case "mceCodeEditor":
-                               var template = new Array();
-
-                               template['file'] = 'source_editor.htm';
-                               template['width'] = parseInt(tinyMCE.getParam("theme_advanced_source_editor_width", 720));
-                               template['height'] = parseInt(tinyMCE.getParam("theme_advanced_source_editor_height", 580));
-
-                               tinyMCE.openWindow(template, {editor_id : editor_id, resizable : "yes", scrollbars : "no", inline : "yes"});
-                               return true;
-
-                       case "mceCharMap":
-                               var template = new Array();
-
-                               template['file'] = 'charmap.htm';
-                               template['width'] = 550 + (tinyMCE.isOpera ? 40 : 0);
-                               template['height'] = 250;
-
-                               template['width'] += tinyMCE.getLang('lang_theme_advanced_charmap_delta_width', 0);
-                               template['height'] += tinyMCE.getLang('lang_theme_advanced_charmap_delta_height', 0);
-
-                               tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes"});
-                               return true;
-
-                       case "mceInsertAnchor":
-                               var template = new Array();
-
-                               template['file'] = 'anchor.htm';
-                               template['width'] = 320;
-                               template['height'] = 90 + (tinyMCE.isNS7 ? 30 : 0);
-
-                               template['width'] += tinyMCE.getLang('lang_theme_advanced_anchor_delta_width', 0);
-                               template['height'] += tinyMCE.getLang('lang_theme_advanced_anchor_delta_height', 0);
-
-                               tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes"});
-                               return true;
-
-                       case "mceNewDocument":
-                               if (confirm(tinyMCE.getLang('lang_newdocument')))
-                                       tinyMCE.execInstanceCommand(editor_id, 'mceSetContent', false, ' ');
-
-                               return true;
-               }
-
-               return false;
-       },
-
-       /**
-        * Editor instance template function.
-        */
-       getEditorTemplate : function(settings, editorId) {
-               function removeFromArray(in_array, remove_array) {
-                       var outArray = new Array(), skip;
-                       
-                       for (var i=0; i<in_array.length; i++) {
-                               skip = false;
-
-                               for (var j=0; j<remove_array.length; j++) {
-                                       if (in_array[i] == remove_array[j]) {
-                                               skip = true;
-                                       }
-                               }
-
-                               if (!skip) {
-                                       outArray[outArray.length] = in_array[i];
-                               }
-                       }
-
-                       return outArray;
-               }
-
-               function addToArray(in_array, add_array) {
-                       for (var i=0; i<add_array.length; i++) {
-                               in_array[in_array.length] = add_array[i];
-                       }
-
-                       return in_array;
-               }
-
-               var template = new Array();
-               var deltaHeight = 0;
-               var resizing = tinyMCE.getParam("theme_advanced_resizing", false);
-               var path = tinyMCE.getParam("theme_advanced_path", true);
-               var statusbarHTML = '<div id="{$editor_id}_path" class="mceStatusbarPathText" style="display: ' + (path ? "block" : "none") + '">&#160;</div><div id="{$editor_id}_resize" class="mceStatusbarResize" style="display: ' + (resizing ? "block" : "none") + '" onmousedown="tinyMCE.themes.advanced._setResizing(event,\'{$editor_id}\',true);"></div><br style="clear: both" />';
-               var layoutManager = tinyMCE.getParam("theme_advanced_layout_manager", "SimpleLayout");
-
-               // Setup style select options -- MOVED UP FOR EXTERNAL TOOLBAR COMPATABILITY!
-               var styleSelectHTML = '<option value="">{$lang_theme_style_select}</option>';
-               if (settings['theme_advanced_styles']) {
-                       var stylesAr = settings['theme_advanced_styles'].split(';');
-                       
-                       for (var i=0; i<stylesAr.length; i++) {
-                               var key, value;
-
-                               key = stylesAr[i].split('=')[0];
-                               value = stylesAr[i].split('=')[1];
-
-                               styleSelectHTML += '<option value="' + value + '">' + key + '</option>';
-                       }
-
-                       TinyMCE_AdvancedTheme._autoImportCSSClasses = false;
-               }
-
-               switch(layoutManager) {
-                       case "SimpleLayout" : //the default TinyMCE Layout (for backwards compatibility)...
-                               var toolbarHTML = "";
-                               var toolbarLocation = tinyMCE.getParam("theme_advanced_toolbar_location", "bottom");
-                               var toolbarAlign = tinyMCE.getParam("theme_advanced_toolbar_align", "center");
-                               var pathLocation = tinyMCE.getParam("theme_advanced_path_location", "none"); // Compatiblity
-                               var statusbarLocation = tinyMCE.getParam("theme_advanced_statusbar_location", pathLocation);
-                               var defVals = {
-                                       theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,styleselect,formatselect",
-                                       theme_advanced_buttons2 : "bullist,numlist,separator,outdent,indent,separator,undo,redo,separator,link,unlink,anchor,image,cleanup,help,code",
-                                       theme_advanced_buttons3 : "hr,removeformat,visualaid,separator,sub,sup,separator,charmap"
-                               };
-
-                               // Add accessibility control
-                               toolbarHTML += '<a href="#" accesskey="q" title="' + tinyMCE.getLang("lang_toolbar_focus") + '"';
-
-                               if (!tinyMCE.getParam("accessibility_focus"))
-                                       toolbarHTML += ' onfocus="tinyMCE.getInstanceById(\'' + editorId + '\').getWin().focus();"';
-
-                               toolbarHTML += '></a>';
-
-                               // Render rows
-                               for (var i=1; i<100; i++) {
-                                       var def = defVals["theme_advanced_buttons" + i];
-
-                                       var buttons = tinyMCE.getParam("theme_advanced_buttons" + i, def == null ? '' : def, true, ',');
-                                       if (buttons.length == 0)
-                                               break;
-
-                                       buttons = removeFromArray(buttons, tinyMCE.getParam("theme_advanced_disable", "", true, ','));
-                                       buttons = addToArray(buttons, tinyMCE.getParam("theme_advanced_buttons" + i + "_add", "", true, ','));
-                                       buttons = addToArray(tinyMCE.getParam("theme_advanced_buttons" + i + "_add_before", "", true, ','), buttons);
-
-                                       for (var b=0; b<buttons.length; b++)
-                                               toolbarHTML += tinyMCE.getControlHTML(buttons[b]);
-
-                                       if (buttons.length > 0) {
-                                               toolbarHTML += "<br />";
-                                               deltaHeight -= 23;
-                                       }
-                               }
-
-                               // Add accessibility control
-                               toolbarHTML += '<a href="#" accesskey="z" onfocus="tinyMCE.getInstanceById(\'' + editorId + '\').getWin().focus();"></a>';
-
-                               // Setup template html
-                               template['html'] = '<table class="mceEditor" border="0" cellpadding="0" cellspacing="0" width="{$width}" height="{$height}" style="width:{$width_style};height:{$height_style}"><tbody>';
-
-                               if (toolbarLocation == "top")
-                                       template['html'] += '<tr><td dir="ltr" class="mceToolbarTop" align="' + toolbarAlign + '" height="1" nowrap="nowrap"><span id="' + editorId + '_toolbar" class="mceToolbarContainer">' + toolbarHTML + '</span></td></tr>';
-
-                               if (statusbarLocation == "top") {
-                                       template['html'] += '<tr><td class="mceStatusbarTop" height="1">' + statusbarHTML + '</td></tr>';
-                                       deltaHeight -= 23;
-                               }
-
-                               template['html'] += '<tr><td align="center"><span id="{$editor_id}"></span></td></tr>';
-
-                               if (toolbarLocation == "bottom")
-                                       template['html'] += '<tr><td dir="ltr" class="mceToolbarBottom" align="' + toolbarAlign + '" height="1"><span id="' + editorId + '_toolbar" class="mceToolbarContainer">' + toolbarHTML + '</span></td></tr>';
-
-                               // External toolbar changes
-                               if (toolbarLocation == "external") {
-                                       var bod = document.body;
-                                       var elm = document.createElement ("div");
-
-                                       toolbarHTML = tinyMCE.replaceVar(toolbarHTML, 'style_select_options', styleSelectHTML);
-                                       toolbarHTML = tinyMCE.applyTemplate(toolbarHTML, {editor_id : editorId});
-
-                                       elm.className = "mceToolbarExternal";
-                                       elm.id = editorId+"_toolbar";
-                                       elm.innerHTML = '<table width="100%" border="0" align="center"><tr><td align="center">'+toolbarHTML+'</td></tr></table>';
-                                       bod.appendChild (elm);
-                                       // bod.style.marginTop = elm.offsetHeight + "px";
-
-                                       deltaHeight = 0;
-                                       tinyMCE.getInstanceById(editorId).toolbarElement = elm;
-
-                                       //template['html'] = '<div id="mceExternalToolbar" align="center" class="mceToolbarExternal"><table width="100%" border="0" align="center"><tr><td align="center">'+toolbarHTML+'</td></tr></table></div>' + template["html"];
-                               } else {
-                                       tinyMCE.getInstanceById(editorId).toolbarElement = null;
-                               }
-
-                               if (statusbarLocation == "bottom") {
-                                       template['html'] += '<tr><td class="mceStatusbarBottom" height="1">' + statusbarHTML + '</td></tr>';
-                                       deltaHeight -= 23;
-                               }
-
-                               template['html'] += '</tbody></table>';
-                               //"SimpleLayout"
-                       break;
-
-                       case "RowLayout" : //Container Layout - containers defined in "theme_advanced_containers" are rendered from top to bottom.
-                               template['html'] = '<table class="mceEditor" border="0" cellpadding="0" cellspacing="0" width="{$width}" height="{$height}" style="width:{$width}px;height:{$height}px"><tbody>';
-
-                               var containers = tinyMCE.getParam("theme_advanced_containers", "", true, ",");
-                               var defaultContainerCSS = tinyMCE.getParam("theme_advanced_containers_default_class", "container");
-                               var defaultContainerAlign = tinyMCE.getParam("theme_advanced_containers_default_align", "center");
-
-                               //Render Containers:
-                               for (var i = 0; i < containers.length; i++)
-                               {
-                                       if (containers[i] == "mceEditor") //Exceptions for mceEditor and ...
-                                               template['html'] += '<tr><td align="center" class="mceEditor_border"><span id="{$editor_id}"></span></td></tr>';
-                                       else if (containers[i] == "mceElementpath" || containers[i] == "mceStatusbar") // ... mceElementpath:
-                                       {
-                                               var pathClass = "mceStatusbar";
-
-                                               if (i == containers.length-1)
-                                               {
-                                                       pathClass = "mceStatusbarBottom";
-                                               }
-                                               else if (i == 0)
-                                               {
-                                                       pathClass = "mceStatusbar";
-                                               }
-                                               else
-                                               {
-                                                       deltaHeight-=2;
-                                               }
-
-                                               template['html'] += '<tr><td class="' + pathClass + '" height="1">' + statusbarHTML + '</td></tr>';
-                                               deltaHeight -= 22;
-                                       } else { // Render normal Container
-                                               var curContainer = tinyMCE.getParam("theme_advanced_container_"+containers[i], "", true, ',');
-                                               var curContainerHTML = "";
-                                               var curAlign = tinyMCE.getParam("theme_advanced_container_"+containers[i]+"_align", defaultContainerAlign);
-                                               var curCSS = tinyMCE.getParam("theme_advanced_container_"+containers[i]+"_class", defaultContainerCSS);
-
-                                               curContainer = removeFromArray(curContainer, tinyMCE.getParam("theme_advanced_disable", "", true, ','));
-
-                                               for (var j=0; j<curContainer.length; j++)
-                                                       curContainerHTML += tinyMCE.getControlHTML(curContainer[j]);
-
-                                               if (curContainer.length > 0) {
-                                                       curContainerHTML += "<br />";
-                                                       deltaHeight -= 23;
-                                               }
-
-                                               template['html'] += '<tr><td class="' + curCSS + '" align="' + curAlign + '" height="1">' + curContainerHTML + '</td></tr>';
-                                       }
-                               }
-
-                               template['html'] += '</tbody></table>';
-                               //RowLayout
-                       break;
-
-                       case "CustomLayout" : //User defined layout callback...
-                               var customLayout = tinyMCE.getParam("theme_advanced_custom_layout","");
-
-                               if (customLayout != "" && eval("typeof(" + customLayout + ")") != "undefined") {
-                                       template = eval(customLayout + "(template);");
-                               }
-                       break;
-               }
-
-               if (resizing)
-                       template['html'] += '<span id="{$editor_id}_resize_box" class="mceResizeBox"></span>';
-
-               template['html'] = tinyMCE.replaceVar(template['html'], 'style_select_options', styleSelectHTML);
-
-               // Set to default values
-               if (!template['delta_width'])
-                       template['delta_width'] = 0;
-
-               if (!template['delta_height'])
-                       template['delta_height'] = deltaHeight;
-
-               return template;
-       },
-
-       initInstance : function(inst) {
-               if (tinyMCE.getParam("theme_advanced_resizing", false)) {
-                       if (tinyMCE.getParam("theme_advanced_resizing_use_cookie", true)) {
-                               var w = TinyMCE_AdvancedTheme._getCookie("TinyMCE_" + inst.editorId + "_width");
-                               var h = TinyMCE_AdvancedTheme._getCookie("TinyMCE_" + inst.editorId + "_height");
-
-                               TinyMCE_AdvancedTheme._resizeTo(inst, w, h, tinyMCE.getParam("theme_advanced_resize_horizontal", true));
-                       }
-               }
-
-               inst.addShortcut('ctrl', 'k', 'lang_link_desc', 'mceLink');
-       },
-
-       removeInstance : function(inst) {
-               new TinyMCE_Layer(inst.editorId + '_fcMenu').remove();
-               new TinyMCE_Layer(inst.editorId + '_bcMenu').remove();
-       },
-
-       hideInstance : function(inst) {
-               TinyMCE_AdvancedTheme._hideMenus(inst.editorId);
-       },
-
-       _handleMenuEvent : function(e) {
-               var te = tinyMCE.isMSIE ? window.event.srcElement : e.target;
-               tinyMCE._menuButtonEvent(e.type == "mouseover" ? "over" : "out", document.getElementById(te._switchId));
-
-               if (e.type == "click")
-                       tinyMCE.execInstanceCommand(te._editor_id, te._command);
-       },
-
-       _hideMenus : function(id) {
-               var fcml = new TinyMCE_Layer(id + '_fcMenu'), bcml = new TinyMCE_Layer(id + '_bcMenu');
-
-               if (fcml.exists() && fcml.isVisible()) {
-                       tinyMCE.switchClass(id + '_forecolor', 'mceMenuButton');
-                       fcml.hide();
-               }
-
-               if (bcml.exists() && bcml.isVisible()) {
-                       tinyMCE.switchClass(id + '_backcolor', 'mceMenuButton');
-                       bcml.hide();
-               }
-       },
-
-       /**
-        * Node change handler.
-        */
-       handleNodeChange : function(editor_id, node, undo_index, undo_levels, visual_aid, any_selection, setup_content) {
-               var alignNode, breakOut, classNode;
-
-               function selectByValue(select_elm, value, first_index) {
-                       first_index = typeof(first_index) == "undefined" ? false : true;
-
-                       if (select_elm) {
-                               for (var i=0; i<select_elm.options.length; i++) {
-                                       var ov = "" + select_elm.options[i].value;
-
-                                       if (first_index && ov.toLowerCase().indexOf(value.toLowerCase()) == 0) {
-                                               select_elm.selectedIndex = i;
-                                               return true;
-                                       }
-
-                                       if (ov == value) {
-                                               select_elm.selectedIndex = i;
-                                               return true;
-                                       }
-                               }
-                       }
-
-                       return false;
-               };
-
-               // No node provided
-               if (node == null)
-                       return;
-
-               // Update path
-               var pathElm = document.getElementById(editor_id + "_path");
-               var inst = tinyMCE.getInstanceById(editor_id);
-               var doc = inst.getDoc();
-               TinyMCE_AdvancedTheme._hideMenus(editor_id);
-
-               if (pathElm) {
-                       // Get node path
-                       var parentNode = node;
-                       var path = new Array();
-                       
-                       while (parentNode != null) {
-                               if (parentNode.nodeName.toUpperCase() == "BODY") {
-                                       break;
-                               }
-
-                               // Only append element nodes to path
-                               if (parentNode.nodeType == 1 && tinyMCE.getAttrib(parentNode, "class").indexOf('mceItemHidden') == -1) {
-                                       path[path.length] = parentNode;
-                               }
-
-                               parentNode = parentNode.parentNode;
-                       }
-
-                       // Setup HTML
-                       var html = "";
-                       for (var i=path.length-1; i>=0; i--) {
-                               var nodeName = path[i].nodeName.toLowerCase();
-                               var nodeData = "";
-
-                               if (nodeName.indexOf("html:") == 0)
-                                       nodeName = nodeName.substring(5);
-
-                               if (nodeName == "b") {
-                                       nodeName = "strong";
-                               }
-
-                               if (nodeName == "i") {
-                                       nodeName = "em";
-                               }
-
-                               if (nodeName == "span") {
-                                       var cn = tinyMCE.getAttrib(path[i], "class");
-                                       if (cn != "" && cn.indexOf('mceItem') == -1)
-                                               nodeData += "class: " + cn + " ";
-
-                                       var st = tinyMCE.getAttrib(path[i], "style");
-                                       if (st != "") {
-                                               st = tinyMCE.serializeStyle(tinyMCE.parseStyle(st));
-                                               nodeData += "style: " + tinyMCE.xmlEncode(st) + " ";
-                                       }
-                               }
-
-                               if (nodeName == "font") {
-                                       if (tinyMCE.getParam("convert_fonts_to_spans"))
-                                               nodeName = "span";
-
-                                       var face = tinyMCE.getAttrib(path[i], "face");
-                                       if (face != "")
-                                               nodeData += "font: " + tinyMCE.xmlEncode(face) + " ";
-
-                                       var size = tinyMCE.getAttrib(path[i], "size");
-                                       if (size != "")
-                                               nodeData += "size: " + tinyMCE.xmlEncode(size) + " ";
-
-                                       var color = tinyMCE.getAttrib(path[i], "color");
-                                       if (color != "")
-                                               nodeData += "color: " + tinyMCE.xmlEncode(color) + " ";
-                               }
-
-                               if (tinyMCE.getAttrib(path[i], 'id') != "") {
-                                       nodeData += "id: " + path[i].getAttribute('id') + " ";
-                               }
-
-                               var className = tinyMCE.getVisualAidClass(tinyMCE.getAttrib(path[i], "class"), false);
-                               if (className != "" && className.indexOf('mceItem') == -1)
-                                       nodeData += "class: " + className + " ";
-
-                               if (tinyMCE.getAttrib(path[i], 'src') != "") {
-                                       var src = tinyMCE.getAttrib(path[i], "mce_src");
-
-                                       if (src == "")
-                                                src = tinyMCE.getAttrib(path[i], "src");
-
-                                       nodeData += "src: " + tinyMCE.xmlEncode(src) + " ";
-                               }
-
-                               if (path[i].nodeName == 'A' && tinyMCE.getAttrib(path[i], 'href') != "") {
-                                       var href = tinyMCE.getAttrib(path[i], "mce_href");
-
-                                       if (href == "")
-                                                href = tinyMCE.getAttrib(path[i], "href");
-
-                                       nodeData += "href: " + tinyMCE.xmlEncode(href) + " ";
-                               }
-
-                               className = tinyMCE.getAttrib(path[i], "class");
-                               if ((nodeName == "img" || nodeName == "span") && className.indexOf('mceItem') != -1) {
-                                       nodeName = className.replace(/mceItem([a-z]+)/gi, '$1').toLowerCase();
-                                       nodeData = path[i].getAttribute('title');
-                               }
-
-                               if (nodeName == "a" && (anchor = tinyMCE.getAttrib(path[i], "name")) != "") {
-                                       nodeName = "a";
-                                       nodeName += "#" + tinyMCE.xmlEncode(anchor);
-                                       nodeData = "";
-                               }
-
-                               if (tinyMCE.getAttrib(path[i], 'name').indexOf("mce_") != 0) {
-                                       var className = tinyMCE.getVisualAidClass(tinyMCE.getAttrib(path[i], "class"), false);
-                                       if (className != "" && className.indexOf('mceItem') == -1) {
-                                               nodeName += "." + className;
-                                       }
-                               }
-
-                               var cmd = 'tinyMCE.execInstanceCommand(\'' + editor_id + '\',\'mceSelectNodeDepth\',false,\'' + i + '\');';
-                               html += '<a title="' + nodeData + '" href="javascript:' + cmd + '" onclick="' + cmd + 'return false;" onmousedown="return false;" target="_self" class="mcePathItem">' + nodeName + '</a>';
-
-                               if (i > 0) {
-                                       html += " &raquo; ";
-                               }
-                       }
-
-                       pathElm.innerHTML = '<a href="#" accesskey="x"></a>' + tinyMCE.getLang('lang_theme_path') + ": " + html + '&#160;';
-               }
-
-               // Reset old states
-               tinyMCE.switchClass(editor_id + '_justifyleft', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_justifyright', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_justifycenter', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_justifyfull', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_bold', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_italic', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_underline', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_strikethrough', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_bullist', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_numlist', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_sub', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_sup', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_anchor', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_link', 'mceButtonDisabled');
-               tinyMCE.switchClass(editor_id + '_unlink', 'mceButtonDisabled');
-               tinyMCE.switchClass(editor_id + '_outdent', 'mceButtonDisabled');
-               tinyMCE.switchClass(editor_id + '_image', 'mceButtonNormal');
-               tinyMCE.switchClass(editor_id + '_hr', 'mceButtonNormal');
-
-               if (node.nodeName == "A" && tinyMCE.getAttrib(node, "class").indexOf('mceItemAnchor') != -1)
-                       tinyMCE.switchClass(editor_id + '_anchor', 'mceButtonSelected');
-
-               // Get link
-               var anchorLink = tinyMCE.getParentElement(node, "a", "href");
-
-               if (anchorLink || any_selection) {
-                       tinyMCE.switchClass(editor_id + '_link', anchorLink ? 'mceButtonSelected' : 'mceButtonNormal');
-                       tinyMCE.switchClass(editor_id + '_unlink', anchorLink ? 'mceButtonSelected' : 'mceButtonNormal');
-               }
-
-               // Handle visual aid
-               tinyMCE.switchClass(editor_id + '_visualaid', visual_aid ? 'mceButtonSelected' : 'mceButtonNormal');
-
-               if (undo_levels != -1) {
-                       tinyMCE.switchClass(editor_id + '_undo', 'mceButtonDisabled');
-                       tinyMCE.switchClass(editor_id + '_redo', 'mceButtonDisabled');
-               }
-
-               // Within li, blockquote
-               if (tinyMCE.getParentElement(node, "li,blockquote"))
-                       tinyMCE.switchClass(editor_id + '_outdent', 'mceButtonNormal');
-
-               // Has redo levels
-               if (undo_index != -1 && (undo_index < undo_levels-1 && undo_levels > 0))
-                       tinyMCE.switchClass(editor_id + '_redo', 'mceButtonNormal');
-
-               // Has undo levels
-               if (undo_index != -1 && (undo_index > 0 && undo_levels > 0))
-                       tinyMCE.switchClass(editor_id + '_undo', 'mceButtonNormal');
-
-               // Select class in select box
-               var selectElm = document.getElementById(editor_id + "_styleSelect");
-               
-               if (selectElm) {
-                       TinyMCE_AdvancedTheme._setupCSSClasses(editor_id);
-
-                       classNode = node;
-                       breakOut = false;
-                       var index = 0;
-
-                       do {
-                               if (classNode && classNode.className) {
-                                       for (var i=0; i<selectElm.options.length; i++) {
-                                               if (selectElm.options[i].value == classNode.className) {
-                                                       index = i;
-                                                       breakOut = true;
-                                                       break;
-                                               }
-                                       }
-                               }
-                       } while (!breakOut && classNode != null && (classNode = classNode.parentNode) != null);
-
-                       selectElm.selectedIndex = index;
-               }
-
-               // Select formatblock
-               var selectElm = document.getElementById(editor_id + "_formatSelect");
-               if (selectElm) {
-                       var elm = tinyMCE.getParentElement(node, "p,div,h1,h2,h3,h4,h5,h6,pre,address");
-
-                       if (elm)
-                               selectByValue(selectElm, "<" + elm.nodeName.toLowerCase() + ">");
-                       else
-                               selectByValue(selectElm, "");
-               }
-
-               // Select fontselect
-               var selectElm = document.getElementById(editor_id + "_fontNameSelect");
-               if (selectElm) {
-                       if (!tinyMCE.isSafari && !(tinyMCE.isMSIE && !tinyMCE.isOpera)) {
-                               var face = inst.queryCommandValue('FontName');
-
-                               face = face == null || face == "" ? "" : face;
-
-                               selectByValue(selectElm, face, face != "");
-                       } else {
-                               var elm = tinyMCE.getParentElement(node, "font", "face");
-
-                               if (elm) {
-                                       var family = tinyMCE.getAttrib(elm, "face");
-
-                                       if (family == '')
-                                               family = '' + elm.style.fontFamily;
-
-                                       if (!selectByValue(selectElm, family, family != ""))
-                                               selectByValue(selectElm, "");
-                               } else
-                                       selectByValue(selectElm, "");
-                       }
-               }
-
-               // Select fontsize
-               var selectElm = document.getElementById(editor_id + "_fontSizeSelect");
-               if (selectElm) {
-                       if (!tinyMCE.isSafari && !tinyMCE.isOpera) {
-                               var size = inst.queryCommandValue('FontSize');
-                               selectByValue(selectElm, size == null || size == "" ? "0" : size);
-                       } else {
-                               var elm = tinyMCE.getParentElement(node, "font", "size");
-                               if (elm) {
-                                       var size = tinyMCE.getAttrib(elm, "size");
-
-                                       if (size == '') {
-                                               var sizes = new Array('', '8px', '10px', '12px', '14px', '18px', '24px', '36px');
-
-                                               size = '' + elm.style.fontSize;
-
-                                               for (var i=0; i<sizes.length; i++) {
-                                                       if (('' + sizes[i]) == size) {
-                                                               size = i;
-                                                               break;
-                                                       }
-                                               }
-                                       }
-
-                                       if (!selectByValue(selectElm, size))
-                                               selectByValue(selectElm, "");
-                               } else
-                                       selectByValue(selectElm, "0");
-                       }
-               }
-
-               // Handle align attributes
-               alignNode = node;
-               breakOut = false;
-               do {
-                       if (!alignNode.getAttribute || !alignNode.getAttribute('align'))
-                               continue;
-
-                       switch (alignNode.getAttribute('align').toLowerCase()) {
-                               case "left":
-                                       tinyMCE.switchClass(editor_id + '_justifyleft', 'mceButtonSelected');
-                                       breakOut = true;
-                               break;
-
-                               case "right":
-                                       tinyMCE.switchClass(editor_id + '_justifyright', 'mceButtonSelected');
-                                       breakOut = true;
-                               break;
-
-                               case "middle":
-                               case "center":
-                                       tinyMCE.switchClass(editor_id + '_justifycenter', 'mceButtonSelected');
-                                       breakOut = true;
-                               break;
-
-                               case "justify":
-                                       tinyMCE.switchClass(editor_id + '_justifyfull', 'mceButtonSelected');
-                                       breakOut = true;
-                               break;
-                       }
-               } while (!breakOut && (alignNode = alignNode.parentNode) != null);
-
-               // Div justification
-               var div = tinyMCE.getParentElement(node, "div");
-               if (div && div.style.textAlign == "center")
-                       tinyMCE.switchClass(editor_id + '_justifycenter', 'mceButtonSelected');
-
-               // Do special text
-               if (!setup_content) {
-                       // , "JustifyLeft", "_justifyleft", "JustifyCenter", "justifycenter", "JustifyRight", "justifyright", "JustifyFull", "justifyfull", "InsertUnorderedList", "bullist", "InsertOrderedList", "numlist", "InsertUnorderedList", "bullist", "Outdent", "outdent", "Indent", "indent", "subscript", "sub"
-                       var ar = new Array("Bold", "_bold", "Italic", "_italic", "Strikethrough", "_strikethrough", "superscript", "_sup", "subscript", "_sub");
-                       for (var i=0; i<ar.length; i+=2) {
-                               if (inst.queryCommandState(ar[i]))
-                                       tinyMCE.switchClass(editor_id + ar[i+1], 'mceButtonSelected');
-                       }
-
-                       if (inst.queryCommandState("Underline") && (node.parentNode == null || node.parentNode.nodeName != "A"))
-                               tinyMCE.switchClass(editor_id + '_underline', 'mceButtonSelected');
-               }
-
-               // Handle elements
-               do {
-                       switch (node.nodeName) {
-                               case "UL":
-                                       tinyMCE.switchClass(editor_id + '_bullist', 'mceButtonSelected');
-                               break;
-
-                               case "OL":
-                                       tinyMCE.switchClass(editor_id + '_numlist', 'mceButtonSelected');
-                               break;
-
-                               case "HR":
-                                        tinyMCE.switchClass(editor_id + '_hr', 'mceButtonSelected');
-                               break;
-
-                               case "IMG":
-                               if (tinyMCE.getAttrib(node, 'name').indexOf('mce_') != 0 && tinyMCE.getAttrib(node, 'class').indexOf('mceItem') == -1) {
-                                       tinyMCE.switchClass(editor_id + '_image', 'mceButtonSelected');
-                               }
-                               break;
-                       }
-               } while ((node = node.parentNode) != null);
-       },
-
-       // Private theme internal functions
-
-       // This function auto imports CSS classes into the class selection droplist
-       _setupCSSClasses : function(editor_id) {
-               var i, selectElm;
-
-               if (!TinyMCE_AdvancedTheme._autoImportCSSClasses)
-                       return;
-
-               selectElm = document.getElementById(editor_id + '_styleSelect');
-
-               if (selectElm && selectElm.getAttribute('cssImported') != 'true') {
-                       var csses = tinyMCE.getCSSClasses(editor_id);
-                       if (csses && selectElm) {
-                               for (i=0; i<csses.length; i++)
-                                       selectElm.options[selectElm.options.length] = new Option(csses[i], csses[i]);
-                       }
-
-                       // Only do this once
-                       if (csses != null && csses.length > 0)
-                               selectElm.setAttribute('cssImported', 'true');
-               }
-       },
-
-       _setCookie : function(name, value, expires, path, domain, secure) {
-               var curCookie = name + "=" + escape(value) +
-                       ((expires) ? "; expires=" + expires.toGMTString() : "") +
-                       ((path) ? "; path=" + escape(path) : "") +
-                       ((domain) ? "; domain=" + domain : "") +
-                       ((secure) ? "; secure" : "");
-
-               document.cookie = curCookie;
-       },
-
-       _getCookie : function(name) {
-               var dc = document.cookie;
-               var prefix = name + "=";
-               var begin = dc.indexOf("; " + prefix);
-
-               if (begin == -1) {
-                       begin = dc.indexOf(prefix);
-
-                       if (begin != 0)
-                               return null;
-               } else
-                       begin += 2;
-
-               var end = document.cookie.indexOf(";", begin);
-
-               if (end == -1)
-                       end = dc.length;
-
-               return unescape(dc.substring(begin + prefix.length, end));
-       },
-
-       _resizeTo : function(inst, w, h, set_w) {
-               var editorContainer = document.getElementById(inst.editorId + '_parent');
-               var tableElm = editorContainer.firstChild;
-               var iframe = inst.iframeElement;
-
-               if (w == null || w == "null") {
-                       set_w = false;
-                       w = 0;
-               }
-
-               if (h == null || h == "null")
-                       return;
-
-               w = parseInt(w);
-               h = parseInt(h);
-
-               if (tinyMCE.isGecko) {
-                       w += 2;
-                       h += 2;
-               }
-
-               var dx = w - tableElm.clientWidth;
-               var dy = h - tableElm.clientHeight;
-
-               w = w < 1 ? 30 : w;
-               h = h < 1 ? 30 : h;
-
-               if (set_w)
-                       tableElm.style.width = w + "px";
-               
-               if ( !tinyMCE.isMSIE || tinyMCE.isMSIE7 || tinyMCE.isOpera ) // WordPress: do this later to avoid creeping toolbar bug in MSIE6
-               tableElm.style.height = h + "px";
-
-               iw = iframe.clientWidth + dx;
-               ih = iframe.clientHeight + dy;
-
-               iw = iw < 1 ? 30 : iw;
-               ih = ih < 1 ? 30 : ih;
-/*             WordPress: found that this led to a shrinking editor with every resize. 
-                       (Gray background creeps in 1px at a time.)
-               if (tinyMCE.isGecko) {
-                       iw -= 2;
-                       ih -= 2;
-               }
-*/
-
-               if (set_w)
-                       iframe.style.width = iw + "px";
-
-               iframe.style.height = ih + "px";
-
-               // Is it to small, make it bigger again
-               if (set_w) {
-                       var tableBodyElm = tableElm.firstChild;
-                       var minIframeWidth = tableBodyElm.scrollWidth;
-                       if (inst.iframeElement.clientWidth < minIframeWidth) {
-                               dx = minIframeWidth - inst.iframeElement.clientWidth;
-
-                               inst.iframeElement.style.width = (iw + dx) + "px";
-                       }
-               }
-               
-               tableElm.style.height = h + "px"; // WordPress: see above
-
-               // Remove pesky table controls
-               inst.useCSS = false;
-       },
-
-       /**
-        * Handles resizing events.
-        */
-       _resizeEventHandler : function(e) {
-               var resizer = TinyMCE_AdvancedTheme._resizer;
-
-               // Do nothing
-               if (!resizer.resizing)
-                       return;
-
-               e = typeof(e) == "undefined" ? window.event : e;
-
-               var dx = e.screenX - resizer.downX;
-               var dy = e.screenY - resizer.downY;
-               var resizeBox = resizer.resizeBox;
-               var editorId = resizer.editorId;
-
-               switch (e.type) {
-                       case "mousemove":
-                               var w, h;
-
-                               w = resizer.width + dx;
-                               h = resizer.height + dy;
-
-                               w = w < 1 ? 1 : w;
-                               h = h < 1 ? 1 : h;
-
-                               if (resizer.horizontal)
-                                       resizeBox.style.width = w + "px";
-
-                               resizeBox.style.height = h + "px";
-                               break;
-
-                       case "mouseup":
-                               TinyMCE_AdvancedTheme._setResizing(e, editorId, false);
-                               TinyMCE_AdvancedTheme._resizeTo(tinyMCE.getInstanceById(editorId), resizer.width + dx, resizer.height + dy, resizer.horizontal);
-
-                               // Expire in a month
-                               if (tinyMCE.getParam("theme_advanced_resizing_use_cookie", true)) {
-                                       var expires = new Date();
-                                       expires.setTime(expires.getTime() + 3600000 * 24 * 30);
-
-                                       // Set the cookies
-                                       TinyMCE_AdvancedTheme._setCookie("TinyMCE_" + editorId + "_width", "" + (resizer.horizontal ? resizer.width + dx : ""), expires);
-                                       TinyMCE_AdvancedTheme._setCookie("TinyMCE_" + editorId + "_height", "" + (resizer.height + dy), expires);
-                               }
-                               break;
-               }
-       },
-
-       /**
-        * Starts/stops the editor resizing.
-        */
-       _setResizing : function(e, editor_id, state) {
-               e = typeof(e) == "undefined" ? window.event : e;
-
-               var resizer = TinyMCE_AdvancedTheme._resizer;
-               var editorContainer = document.getElementById(editor_id + '_parent');
-               var editorArea = document.getElementById(editor_id + '_parent').firstChild;
-               var resizeBox = document.getElementById(editor_id + '_resize_box');
-               var inst = tinyMCE.getInstanceById(editor_id);
-
-               if (state) {
-                       // Place box over editor area
-                       var width = editorArea.clientWidth;
-                       var height = editorArea.clientHeight;
-
-                       resizeBox.style.width = width + "px";
-                       resizeBox.style.height = height + "px";
-
-                       resizer.iframeWidth = inst.iframeElement.clientWidth;
-                       resizer.iframeHeight = inst.iframeElement.clientHeight;
-
-                       // Hide editor and show resize box
-                       editorArea.style.display = "none";
-                       resizeBox.style.display = "block";
-
-                       // Add event handlers, only once
-                       if (!resizer.eventHandlers) {
-                               if (tinyMCE.isMSIE)
-                                       tinyMCE.addEvent(document, "mousemove", TinyMCE_AdvancedTheme._resizeEventHandler);
-                               else
-                                       tinyMCE.addEvent(window, "mousemove", TinyMCE_AdvancedTheme._resizeEventHandler);
-
-                               tinyMCE.addEvent(document, "mouseup", TinyMCE_AdvancedTheme._resizeEventHandler);
-
-                               resizer.eventHandlers = true;
-                       }
-
-                       resizer.resizing = true;
-                       resizer.downX = e.screenX;
-                       resizer.downY = e.screenY;
-                       resizer.width = parseInt(resizeBox.style.width);
-                       resizer.height = parseInt(resizeBox.style.height);
-                       resizer.editorId = editor_id;
-                       resizer.resizeBox = resizeBox;
-                       resizer.horizontal = tinyMCE.getParam("theme_advanced_resize_horizontal", true);
-               } else {
-                       resizer.resizing = false;
-                       resizeBox.style.display = "none";
-                       editorArea.style.display = tinyMCE.isMSIE && !tinyMCE.isOpera ? "block" : "table";
-                       tinyMCE.execCommand('mceResetDesignMode');
-               }
-       },
-
-       _getColorHTML : function(id, n, cm) {
-               var i, h, cl;
-
-               h = '<span class="mceMenuLine"></span>';
-               cl = tinyMCE.getParam(n, TinyMCE_AdvancedTheme._defColors).split(',');
-
-               h += '<table class="mceColors"><tr>';
-               for (i=0; i<cl.length; i++) {
-                       c = 'tinyMCE.execInstanceCommand(\'' + id + '\', \'' + cm + '\', false, \'#' + cl[i] + '\');';
-                       h += '<td><a href="javascript:' + c + '" style="background-color: #' + cl[i] + '" onclick="' + c + ';return false;"></a></td>';
-
-                       if ((i+1) % 8 == 0)
-                               h += '</tr><tr>';
-               }
-
-               h += '</tr></table>';
-
-               if (tinyMCE.getParam("theme_advanced_more_colors", true))
-                       h += '<a href="javascript:void(0);" onclick="TinyMCE_AdvancedTheme._pickColor(\'' + id + '\',\'' + cm + '\');" class="mceMoreColors">' + tinyMCE.getLang('lang_more_colors') + '</a>';
-
-               return h;
-       },
-
-       _pickColor : function(id, cm) {
-               var inputColor, inst = tinyMCE.selectedInstance;
-
-               if (cm == 'forecolor' && inst)
-                       inputColor = inst.foreColor;
-
-               if ((cm == 'backcolor' || cm == 'HiliteColor') && inst)
-                       inputColor = inst.backColor;
-
-               tinyMCE.execCommand('mceColorPicker', true, {color : inputColor, callback : function(c) {
-                       tinyMCE.execInstanceCommand(id, cm, false, c);
-               }});
-       },
-
-       _insertImage : function(src, alt, border, hspace, vspace, width, height, align, title, onmouseover, onmouseout) {
-               tinyMCE.execCommand("mceInsertContent", false, tinyMCE.createTagHTML('img', {
-                       src : tinyMCE.convertRelativeToAbsoluteURL(tinyMCE.settings['base_href'], src), // Force absolute
-                       mce_src : src,
-                       alt : alt,
-                       border : border,
-                       hspace : hspace,
-                       vspace : vspace,
-                       width : width,
-                       height : height,
-                       align : align,
-                       title : title,
-                       onmouseover : onmouseover,
-                       onmouseout : onmouseout
-               }));
-       },
-
-       _insertLink : function(href, target, title, onclick, style_class) {
-               tinyMCE.execCommand('mceBeginUndoLevel');
-
-               if (tinyMCE.selectedInstance && tinyMCE.selectedElement && tinyMCE.selectedElement.nodeName.toLowerCase() == "img") {
-                       var doc = tinyMCE.selectedInstance.getDoc();
-                       var linkElement = tinyMCE.getParentElement(tinyMCE.selectedElement, "a");
-                       var newLink = false;
-
-                       if (!linkElement) {
-                               linkElement = doc.createElement("a");
-                               newLink = true;
-                       }
-
-                       var mhref = href;
-                       var thref = eval(tinyMCE.settings['urlconverter_callback'] + "(href, linkElement);");
-                       mhref = tinyMCE.getParam('convert_urls') ? href : mhref;
-
-                       tinyMCE.setAttrib(linkElement, 'href', thref);
-                       tinyMCE.setAttrib(linkElement, 'mce_href', mhref);
-                       tinyMCE.setAttrib(linkElement, 'target', target);
-                       tinyMCE.setAttrib(linkElement, 'title', title);
-                       tinyMCE.setAttrib(linkElement, 'onclick', onclick);
-                       tinyMCE.setAttrib(linkElement, 'class', style_class);
-
-                       if (newLink) {
-                               linkElement.appendChild(tinyMCE.selectedElement.cloneNode(true));
-                               tinyMCE.selectedElement.parentNode.replaceChild(linkElement, tinyMCE.selectedElement);
-                       }
-
-                       return;
-               }
-
-               if (!tinyMCE.linkElement && tinyMCE.selectedInstance) {
-                       if (tinyMCE.isSafari) {
-                               tinyMCE.execCommand("mceInsertContent", false, '<a href="' + tinyMCE.uniqueURL + '">' + tinyMCE.selectedInstance.selection.getSelectedHTML() + '</a>');
-                       } else
-                               tinyMCE.selectedInstance.contentDocument.execCommand("createlink", false, tinyMCE.uniqueURL);
-
-                       tinyMCE.linkElement = tinyMCE.getElementByAttributeValue(tinyMCE.selectedInstance.contentDocument.body, "a", "href", tinyMCE.uniqueURL);
-
-                       var elementArray = tinyMCE.getElementsByAttributeValue(tinyMCE.selectedInstance.contentDocument.body, "a", "href", tinyMCE.uniqueURL);
-
-                       for (var i=0; i<elementArray.length; i++) {
-                               var mhref = href;
-                               var thref = eval(tinyMCE.settings['urlconverter_callback'] + "(href, elementArray[i]);");
-                               mhref = tinyMCE.getParam('convert_urls') ? href : mhref;
-
-                               tinyMCE.setAttrib(elementArray[i], 'href', thref);
-                               tinyMCE.setAttrib(elementArray[i], 'mce_href', mhref);
-                               tinyMCE.setAttrib(elementArray[i], 'target', target);
-                               tinyMCE.setAttrib(elementArray[i], 'title', title);
-                               tinyMCE.setAttrib(elementArray[i], 'onclick', onclick);
-                               tinyMCE.setAttrib(elementArray[i], 'class', style_class);
-                       }
-
-                       tinyMCE.linkElement = elementArray[0];
-               }
-
-               if (tinyMCE.linkElement) {
-                       var mhref = href;
-                       href = eval(tinyMCE.settings['urlconverter_callback'] + "(href, tinyMCE.linkElement);");
-                       mhref = tinyMCE.getParam('convert_urls') ? href : mhref;
-
-                       tinyMCE.setAttrib(tinyMCE.linkElement, 'href', href);
-                       tinyMCE.setAttrib(tinyMCE.linkElement, 'mce_href', mhref);
-                       tinyMCE.setAttrib(tinyMCE.linkElement, 'target', target);
-                       tinyMCE.setAttrib(tinyMCE.linkElement, 'title', title);
-                       tinyMCE.setAttrib(tinyMCE.linkElement, 'onclick', onclick);
-                       tinyMCE.setAttrib(tinyMCE.linkElement, 'class', style_class);
-               }
-
-               tinyMCE.execCommand('mceEndUndoLevel');
-       }
-};
-
-tinyMCE.addTheme("advanced", TinyMCE_AdvancedTheme);
-
-// Add default buttons maps for advanced theme and all internal plugins
-tinyMCE.addButtonMap(TinyMCE_AdvancedTheme._buttonMap);
+(function(h){var i=h.DOM,g=h.dom.Event,c=h.extend,f=h.each,a=h.util.Cookie,e,d=h.explode;function b(p,m){var k,l,o=p.dom,j="",n,r;previewStyles=p.settings.preview_styles;if(previewStyles===false){return""}if(!previewStyles){previewStyles="font-family font-size font-weight text-decoration text-transform color background-color"}function q(s){return s.replace(/%(\w+)/g,"")}k=m.block||m.inline||"span";l=o.create(k);f(m.styles,function(t,s){t=q(t);if(t){o.setStyle(l,s,t)}});f(m.attributes,function(t,s){t=q(t);if(t){o.setAttrib(l,s,t)}});f(m.classes,function(s){s=q(s);if(!o.hasClass(l,s)){o.addClass(l,s)}});o.setStyles(l,{position:"absolute",left:-65535});p.getBody().appendChild(l);n=o.getStyle(p.getBody(),"fontSize",true);n=/px$/.test(n)?parseInt(n,10):0;f(previewStyles.split(" "),function(s){var t=o.getStyle(l,s,true);if(s=="background-color"&&/transparent|rgba\s*\([^)]+,\s*0\)/.test(t)){t=o.getStyle(p.getBody(),s,true);if(o.toHex(t).toLowerCase()=="#ffffff"){return}}if(s=="font-size"){if(/em|%$/.test(t)){if(n===0){return}t=parseFloat(t,10)/(/%$/.test(t)?100:1);t=(t*n)+"px"}}j+=s+":"+t+";"});o.remove(l);return j}h.ThemeManager.requireLangPack("advanced");h.create("tinymce.themes.AdvancedTheme",{sizes:[8,10,12,14,18,24,36],controls:{bold:["bold_desc","Bold"],italic:["italic_desc","Italic"],underline:["underline_desc","Underline"],strikethrough:["striketrough_desc","Strikethrough"],justifyleft:["justifyleft_desc","JustifyLeft"],justifycenter:["justifycenter_desc","JustifyCenter"],justifyright:["justifyright_desc","JustifyRight"],justifyfull:["justifyfull_desc","JustifyFull"],bullist:["bullist_desc","InsertUnorderedList"],numlist:["numlist_desc","InsertOrderedList"],outdent:["outdent_desc","Outdent"],indent:["indent_desc","Indent"],cut:["cut_desc","Cut"],copy:["copy_desc","Copy"],paste:["paste_desc","Paste"],undo:["undo_desc","Undo"],redo:["redo_desc","Redo"],link:["link_desc","mceLink"],unlink:["unlink_desc","unlink"],image:["image_desc","mceImage"],cleanup:["cleanup_desc","mceCleanup"],help:["help_desc","mceHelp"],code:["code_desc","mceCodeEditor"],hr:["hr_desc","InsertHorizontalRule"],removeformat:["removeformat_desc","RemoveFormat"],sub:["sub_desc","subscript"],sup:["sup_desc","superscript"],forecolor:["forecolor_desc","ForeColor"],forecolorpicker:["forecolor_desc","mceForeColor"],backcolor:["backcolor_desc","HiliteColor"],backcolorpicker:["backcolor_desc","mceBackColor"],charmap:["charmap_desc","mceCharMap"],visualaid:["visualaid_desc","mceToggleVisualAid"],anchor:["anchor_desc","mceInsertAnchor"],newdocument:["newdocument_desc","mceNewDocument"],blockquote:["blockquote_desc","mceBlockQuote"]},stateControls:["bold","italic","underline","strikethrough","bullist","numlist","justifyleft","justifycenter","justifyright","justifyfull","sub","sup","blockquote"],init:function(k,l){var m=this,n,j,p;m.editor=k;m.url=l;m.onResolveName=new h.util.Dispatcher(this);n=k.settings;k.forcedHighContrastMode=k.settings.detect_highcontrast&&m._isHighContrast();k.settings.skin=k.forcedHighContrastMode?"highcontrast":k.settings.skin;if(!n.theme_advanced_buttons1){n=c({theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",theme_advanced_buttons2:"bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",theme_advanced_buttons3:"hr,removeformat,visualaid,|,sub,sup,|,charmap"},n)}m.settings=n=c({theme_advanced_path:true,theme_advanced_toolbar_location:"top",theme_advanced_blockformats:"p,address,pre,h1,h2,h3,h4,h5,h6",theme_advanced_toolbar_align:"left",theme_advanced_statusbar_location:"bottom",theme_advanced_fonts:"Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",theme_advanced_more_colors:1,theme_advanced_row_height:23,theme_advanced_resize_horizontal:1,theme_advanced_resizing_use_cookie:1,theme_advanced_font_sizes:"1,2,3,4,5,6,7",theme_advanced_font_selector:"span",theme_advanced_show_current_color:0,readonly:k.settings.readonly},n);if(!n.font_size_style_values){n.font_size_style_values="8pt,10pt,12pt,14pt,18pt,24pt,36pt"}if(h.is(n.theme_advanced_font_sizes,"string")){n.font_size_style_values=h.explode(n.font_size_style_values);n.font_size_classes=h.explode(n.font_size_classes||"");p={};k.settings.theme_advanced_font_sizes=n.theme_advanced_font_sizes;f(k.getParam("theme_advanced_font_sizes","","hash"),function(r,q){var o;if(q==r&&r>=1&&r<=7){q=r+" ("+m.sizes[r-1]+"pt)";o=n.font_size_classes[r-1];r=n.font_size_style_values[r-1]||(m.sizes[r-1]+"pt")}if(/^\s*\./.test(r)){o=r.replace(/\./g,"")}p[q]=o?{"class":o}:{fontSize:r}});n.theme_advanced_font_sizes=p}if((j=n.theme_advanced_path_location)&&j!="none"){n.theme_advanced_statusbar_location=n.theme_advanced_path_location}if(n.theme_advanced_statusbar_location=="none"){n.theme_advanced_statusbar_location=0}if(k.settings.content_css!==false){k.contentCSS.push(k.baseURI.toAbsolute(l+"/skins/"+k.settings.skin+"/content.css"))}k.onInit.add(function(){if(!k.settings.readonly){k.onNodeChange.add(m._nodeChanged,m);k.onKeyUp.add(m._updateUndoStatus,m);k.onMouseUp.add(m._updateUndoStatus,m);k.dom.bind(k.dom.getRoot(),"dragend",function(){m._updateUndoStatus(k)})}});k.onSetProgressState.add(function(r,o,s){var t,u=r.id,q;if(o){m.progressTimer=setTimeout(function(){t=r.getContainer();t=t.insertBefore(i.create("DIV",{style:"position:relative"}),t.firstChild);q=i.get(r.id+"_tbl");i.add(t,"div",{id:u+"_blocker","class":"mceBlocker",style:{width:q.clientWidth+2,height:q.clientHeight+2}});i.add(t,"div",{id:u+"_progress","class":"mceProgress",style:{left:q.clientWidth/2,top:q.clientHeight/2}})},s||0)}else{i.remove(u+"_blocker");i.remove(u+"_progress");clearTimeout(m.progressTimer)}});i.loadCSS(n.editor_css?k.documentBaseURI.toAbsolute(n.editor_css):l+"/skins/"+k.settings.skin+"/ui.css");if(n.skin_variant){i.loadCSS(l+"/skins/"+k.settings.skin+"/ui_"+n.skin_variant+".css")}},_isHighContrast:function(){var j,k=i.add(i.getRoot(),"div",{style:"background-color: rgb(171,239,86);"});j=(i.getStyle(k,"background-color",true)+"").toLowerCase().replace(/ /g,"");i.remove(k);return j!="rgb(171,239,86)"&&j!="#abef56"},createControl:function(m,j){var k,l;if(l=j.createControl(m)){return l}switch(m){case"styleselect":return this._createStyleSelect();case"formatselect":return this._createBlockFormats();case"fontselect":return this._createFontSelect();case"fontsizeselect":return this._createFontSizeSelect();case"forecolor":return this._createForeColorMenu();case"backcolor":return this._createBackColorMenu()}if((k=this.controls[m])){return j.createButton(m,{title:"advanced."+k[0],cmd:k[1],ui:k[2],value:k[3]})}},execCommand:function(l,k,m){var j=this["_"+l];if(j){j.call(this,k,m);return true}return false},_importClasses:function(l){var j=this.editor,k=j.controlManager.get("styleselect");if(k.getLength()==0){f(j.dom.getClasses(),function(q,m){var p="style_"+m,n;n={inline:"span",attributes:{"class":q["class"]},selector:"*"};j.formatter.register(p,n);k.add(q["class"],p,{style:function(){return b(j,n)}})})}},_createStyleSelect:function(o){var l=this,j=l.editor,k=j.controlManager,m;m=k.createListBox("styleselect",{title:"advanced.style_select",onselect:function(q){var r,n=[],p;f(m.items,function(s){n.push(s.value)});j.focus();j.undoManager.add();r=j.formatter.matchAll(n);h.each(r,function(s){if(!q||s==q){if(s){j.formatter.remove(s)}p=true}});if(!p){j.formatter.apply(q)}j.undoManager.add();j.nodeChanged();return false}});j.onPreInit.add(function(){var p=0,n=j.getParam("style_formats");if(n){f(n,function(q){var r,s=0;f(q,function(){s++});if(s>1){r=q.name=q.name||"style_"+(p++);j.formatter.register(r,q);m.add(q.title,r,{style:function(){return b(j,q)}})}else{m.add(q.title)}})}else{f(j.getParam("theme_advanced_styles","","hash"),function(t,s){var r,q;if(t){r="style_"+(p++);q={inline:"span",classes:t,selector:"*"};j.formatter.register(r,q);m.add(l.editor.translate(s),r,{style:function(){return b(j,q)}})}})}});if(m.getLength()==0){m.onPostRender.add(function(p,q){if(!m.NativeListBox){g.add(q.id+"_text","focus",l._importClasses,l);g.add(q.id+"_text","mousedown",l._importClasses,l);g.add(q.id+"_open","focus",l._importClasses,l);g.add(q.id+"_open","mousedown",l._importClasses,l)}else{g.add(q.id,"focus",l._importClasses,l)}})}return m},_createFontSelect:function(){var l,k=this,j=k.editor;l=j.controlManager.createListBox("fontselect",{title:"advanced.fontdefault",onselect:function(m){var n=l.items[l.selectedIndex];if(!m&&n){j.execCommand("FontName",false,n.value);return}j.execCommand("FontName",false,m);l.select(function(o){return m==o});if(n&&n.value==m){l.select(null)}return false}});if(l){f(j.getParam("theme_advanced_fonts",k.settings.theme_advanced_fonts,"hash"),function(n,m){l.add(j.translate(m),n,{style:n.indexOf("dings")==-1?"font-family:"+n:""})})}return l},_createFontSizeSelect:function(){var m=this,k=m.editor,n,l=0,j=[];n=k.controlManager.createListBox("fontsizeselect",{title:"advanced.font_size",onselect:function(o){var p=n.items[n.selectedIndex];if(!o&&p){p=p.value;if(p["class"]){k.formatter.toggle("fontsize_class",{value:p["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,p.fontSize)}return}if(o["class"]){k.focus();k.undoManager.add();k.formatter.toggle("fontsize_class",{value:o["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,o.fontSize)}n.select(function(q){return o==q});if(p&&(p.value.fontSize==o.fontSize||p.value["class"]&&p.value["class"]==o["class"])){n.select(null)}return false}});if(n){f(m.settings.theme_advanced_font_sizes,function(p,o){var q=p.fontSize;if(q>=1&&q<=7){q=m.sizes[parseInt(q)-1]+"pt"}n.add(o,p,{style:"font-size:"+q,"class":"mceFontSize"+(l++)+(" "+(p["class"]||""))})})}return n},_createBlockFormats:function(){var l,j={p:"advanced.paragraph",address:"advanced.address",pre:"advanced.pre",h1:"advanced.h1",h2:"advanced.h2",h3:"advanced.h3",h4:"advanced.h4",h5:"advanced.h5",h6:"advanced.h6",div:"advanced.div",blockquote:"advanced.blockquote",code:"advanced.code",dt:"advanced.dt",dd:"advanced.dd",samp:"advanced.samp"},k=this;l=k.editor.controlManager.createListBox("formatselect",{title:"advanced.block",onselect:function(m){k.editor.execCommand("FormatBlock",false,m);return false}});if(l){f(k.editor.getParam("theme_advanced_blockformats",k.settings.theme_advanced_blockformats,"hash"),function(n,m){l.add(k.editor.translate(m!=n?m:j[n]),n,{"class":"mce_formatPreview mce_"+n,style:function(){return b(k.editor,{block:n})}})})}return l},_createForeColorMenu:function(){var n,k=this,l=k.settings,m={},j;if(l.theme_advanced_more_colors){m.more_colors_func=function(){k._mceColorPicker(0,{color:n.value,func:function(o){n.setColor(o)}})}}if(j=l.theme_advanced_text_colors){m.colors=j}if(l.theme_advanced_default_foreground_color){m.default_color=l.theme_advanced_default_foreground_color}m.title="advanced.forecolor_desc";m.cmd="ForeColor";m.scope=this;n=k.editor.controlManager.createColorSplitButton("forecolor",m);return n},_createBackColorMenu:function(){var n,k=this,l=k.settings,m={},j;if(l.theme_advanced_more_colors){m.more_colors_func=function(){k._mceColorPicker(0,{color:n.value,func:function(o){n.setColor(o)}})}}if(j=l.theme_advanced_background_colors){m.colors=j}if(l.theme_advanced_default_background_color){m.default_color=l.theme_advanced_default_background_color}m.title="advanced.backcolor_desc";m.cmd="HiliteColor";m.scope=this;n=k.editor.controlManager.createColorSplitButton("backcolor",m);return n},renderUI:function(l){var q,m,r,w=this,u=w.editor,x=w.settings,v,k,j;if(u.settings){u.settings.aria_label=x.aria_label+u.getLang("advanced.help_shortcut")}q=k=i.create("span",{role:"application","aria-labelledby":u.id+"_voice",id:u.id+"_parent","class":"mceEditor "+u.settings.skin+"Skin"+(x.skin_variant?" "+u.settings.skin+"Skin"+w._ufirst(x.skin_variant):"")+(u.settings.directionality=="rtl"?" mceRtl":"")});i.add(q,"span",{"class":"mceVoiceLabel",style:"display:none;",id:u.id+"_voice"},x.aria_label);if(!i.boxModel){q=i.add(q,"div",{"class":"mceOldBoxModel"})}q=v=i.add(q,"table",{role:"presentation",id:u.id+"_tbl","class":"mceLayout",cellSpacing:0,cellPadding:0});q=r=i.add(q,"tbody");switch((x.theme_advanced_layout_manager||"").toLowerCase()){case"rowlayout":m=w._rowLayout(x,r,l);break;case"customlayout":m=u.execCallback("theme_advanced_custom_layout",x,r,l,k);break;default:m=w._simpleLayout(x,r,l,k)}q=l.targetNode;j=v.rows;i.addClass(j[0],"mceFirst");i.addClass(j[j.length-1],"mceLast");f(i.select("tr",r),function(o){i.addClass(o.firstChild,"mceFirst");i.addClass(o.childNodes[o.childNodes.length-1],"mceLast")});if(i.get(x.theme_advanced_toolbar_container)){i.get(x.theme_advanced_toolbar_container).appendChild(k)}else{i.insertAfter(k,q)}g.add(u.id+"_path_row","click",function(n){n=n.target;if(n.nodeName=="A"){w._sel(n.className.replace(/^.*mcePath_([0-9]+).*$/,"$1"));return false}});if(!u.getParam("accessibility_focus")){g.add(i.add(k,"a",{href:"#"},"<!-- IE -->"),"focus",function(){tinyMCE.get(u.id).focus()})}if(x.theme_advanced_toolbar_location=="external"){l.deltaHeight=0}w.deltaHeight=l.deltaHeight;l.targetNode=null;u.onKeyDown.add(function(p,n){var s=121,o=122;if(n.altKey){if(n.keyCode===s){if(h.isWebKit){window.focus()}w.toolbarGroup.focus();return g.cancel(n)}else{if(n.keyCode===o){i.get(p.id+"_path_row").focus();return g.cancel(n)}}}});u.addShortcut("alt+0","","mceShortcuts",w);return{iframeContainer:m,editorContainer:u.id+"_parent",sizeContainer:v,deltaHeight:l.deltaHeight}},getInfo:function(){return{longname:"Advanced theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:h.majorVersion+"."+h.minorVersion}},resizeBy:function(j,k){var l=i.get(this.editor.id+"_ifr");this.resizeTo(l.clientWidth+j,l.clientHeight+k)},resizeTo:function(j,n,l){var k=this.editor,m=this.settings,o=i.get(k.id+"_tbl"),p=i.get(k.id+"_ifr");j=Math.max(m.theme_advanced_resizing_min_width||100,j);n=Math.max(m.theme_advanced_resizing_min_height||100,n);j=Math.min(m.theme_advanced_resizing_max_width||65535,j);n=Math.min(m.theme_advanced_resizing_max_height||65535,n);i.setStyle(o,"height","");i.setStyle(p,"height",n);if(m.theme_advanced_resize_horizontal){i.setStyle(o,"width","");i.setStyle(p,"width",j);if(j<o.clientWidth){j=o.clientWidth;i.setStyle(p,"width",o.clientWidth)}}if(l&&m.theme_advanced_resizing_use_cookie){a.setHash("TinyMCE_"+k.id+"_size",{cw:j,ch:n})}},destroy:function(){var j=this.editor.id;g.clear(j+"_resize");g.clear(j+"_path_row");g.clear(j+"_external_close")},_simpleLayout:function(z,u,l,j){var y=this,v=y.editor,w=z.theme_advanced_toolbar_location,q=z.theme_advanced_statusbar_location,m,k,r,x;if(z.readonly){m=i.add(u,"tr");m=k=i.add(m,"td",{"class":"mceIframeContainer"});return k}if(w=="top"){y._addToolbars(u,l)}if(w=="external"){m=x=i.create("div",{style:"position:relative"});m=i.add(m,"div",{id:v.id+"_external","class":"mceExternalToolbar"});i.add(m,"a",{id:v.id+"_external_close",href:"javascript:;","class":"mceExternalClose"});m=i.add(m,"table",{id:v.id+"_tblext",cellSpacing:0,cellPadding:0});r=i.add(m,"tbody");if(j.firstChild.className=="mceOldBoxModel"){j.firstChild.appendChild(x)}else{j.insertBefore(x,j.firstChild)}y._addToolbars(r,l);v.onMouseUp.add(function(){var o=i.get(v.id+"_external");i.show(o);i.hide(e);var n=g.add(v.id+"_external_close","click",function(){i.hide(v.id+"_external");g.remove(v.id+"_external_close","click",n);return false});i.show(o);i.setStyle(o,"top",0-i.getRect(v.id+"_tblext").h-1);i.hide(o);i.show(o);o.style.filter="";e=v.id+"_external";o=null})}if(q=="top"){y._addStatusBar(u,l)}if(!z.theme_advanced_toolbar_container){m=i.add(u,"tr");m=k=i.add(m,"td",{"class":"mceIframeContainer"})}if(w=="bottom"){y._addToolbars(u,l)}if(q=="bottom"){y._addStatusBar(u,l)}return k},_rowLayout:function(x,p,l){var w=this,q=w.editor,v,y,j=q.controlManager,m,k,u,r;v=x.theme_advanced_containers_default_class||"";y=x.theme_advanced_containers_default_align||"center";f(d(x.theme_advanced_containers||""),function(s,o){var n=x["theme_advanced_container_"+s]||"";switch(s.toLowerCase()){case"mceeditor":m=i.add(p,"tr");m=k=i.add(m,"td",{"class":"mceIframeContainer"});break;case"mceelementpath":w._addStatusBar(p,l);break;default:r=(x["theme_advanced_container_"+s+"_align"]||y).toLowerCase();r="mce"+w._ufirst(r);m=i.add(i.add(p,"tr"),"td",{"class":"mceToolbar "+(x["theme_advanced_container_"+s+"_class"]||v)+" "+r||y});u=j.createToolbar("toolbar"+o);w._addControls(n,u);i.setHTML(m,u.renderHTML());l.deltaHeight-=x.theme_advanced_row_height}});return k},_addControls:function(k,j){var l=this,m=l.settings,n,o=l.editor.controlManager;if(m.theme_advanced_disable&&!l._disabled){n={};f(d(m.theme_advanced_disable),function(p){n[p]=1});l._disabled=n}else{n=l._disabled}f(d(k),function(q){var p;if(n&&n[q]){return}if(q=="tablecontrols"){f(["table","|","row_props","cell_props","|","row_before","row_after","delete_row","|","col_before","col_after","delete_col","|","split_cells","merge_cells"],function(r){r=l.createControl(r,o);if(r){j.add(r)}});return}p=l.createControl(q,o);if(p){j.add(p)}})},_addToolbars:function(y,k){var B=this,q,p,u=B.editor,C=B.settings,A,j=u.controlManager,w,l,r=[],z,x,m=false;x=j.createToolbarGroup("toolbargroup",{name:u.getLang("advanced.toolbar"),tab_focus_toolbar:u.getParam("theme_advanced_tab_focus_toolbar")});B.toolbarGroup=x;z=C.theme_advanced_toolbar_align.toLowerCase();z="mce"+B._ufirst(z);l=i.add(i.add(y,"tr",{role:"presentation"}),"td",{"class":"mceToolbar "+z,role:"toolbar"});for(q=1;(A=C["theme_advanced_buttons"+q]);q++){m=true;p=j.createToolbar("toolbar"+q,{"class":"mceToolbarRow"+q});if(C["theme_advanced_buttons"+q+"_add"]){A+=","+C["theme_advanced_buttons"+q+"_add"]}if(C["theme_advanced_buttons"+q+"_add_before"]){A=C["theme_advanced_buttons"+q+"_add_before"]+","+A}B._addControls(A,p);x.add(p);k.deltaHeight-=C.theme_advanced_row_height}if(!m){k.deltaHeight-=C.theme_advanced_row_height}r.push(x.renderHTML());r.push(i.createHTML("a",{href:"#",accesskey:"z",title:u.getLang("advanced.toolbar_focus"),onfocus:"tinyMCE.getInstanceById('"+u.id+"').focus();"},"<!-- IE -->"));i.setHTML(l,r.join(""))},_addStatusBar:function(p,k){var l,w=this,q=w.editor,x=w.settings,j,u,v,m;l=i.add(p,"tr");l=m=i.add(l,"td",{"class":"mceStatusbar"});l=i.add(l,"div",{id:q.id+"_path_row",role:"group","aria-labelledby":q.id+"_path_voice"});if(x.theme_advanced_path){i.add(l,"span",{id:q.id+"_path_voice"},q.translate("advanced.path"));i.add(l,"span",{},": ")}else{i.add(l,"span",{},"&#160;")}if(x.theme_advanced_resizing){i.add(m,"a",{id:q.id+"_resize",href:"javascript:;",onclick:"return false;","class":"mceResize",tabIndex:"-1"});if(x.theme_advanced_resizing_use_cookie){q.onPostRender.add(function(){var n=a.getHash("TinyMCE_"+q.id+"_size"),r=i.get(q.id+"_tbl");if(!n){return}w.resizeTo(n.cw,n.ch)})}q.onPostRender.add(function(){g.add(q.id+"_resize","click",function(n){n.preventDefault()});g.add(q.id+"_resize","mousedown",function(E){var t,r,s,o,D,A,B,G,n,F,y;function z(H){H.preventDefault();n=B+(H.screenX-D);F=G+(H.screenY-A);w.resizeTo(n,F)}function C(H){g.remove(i.doc,"mousemove",t);g.remove(q.getDoc(),"mousemove",r);g.remove(i.doc,"mouseup",s);g.remove(q.getDoc(),"mouseup",o);n=B+(H.screenX-D);F=G+(H.screenY-A);w.resizeTo(n,F,true);q.nodeChanged()}E.preventDefault();D=E.screenX;A=E.screenY;y=i.get(w.editor.id+"_ifr");B=n=y.clientWidth;G=F=y.clientHeight;t=g.add(i.doc,"mousemove",z);r=g.add(q.getDoc(),"mousemove",z);s=g.add(i.doc,"mouseup",C);o=g.add(q.getDoc(),"mouseup",C)})})}k.deltaHeight-=21;l=p=null},_updateUndoStatus:function(k){var j=k.controlManager,l=k.undoManager;j.setDisabled("undo",!l.hasUndo()&&!l.typing);j.setDisabled("redo",!l.hasRedo())},_nodeChanged:function(o,u,E,r,F){var z=this,D,G=0,y,H,A=z.settings,x,l,w,C,m,k,j;h.each(z.stateControls,function(n){u.setActive(n,o.queryCommandState(z.controls[n][1]))});function q(p){var s,n=F.parents,t=p;if(typeof(p)=="string"){t=function(v){return v.nodeName==p}}for(s=0;s<n.length;s++){if(t(n[s])){return n[s]}}}u.setActive("visualaid",o.hasVisual);z._updateUndoStatus(o);u.setDisabled("outdent",!o.queryCommandState("Outdent"));D=q("A");if(H=u.get("link")){H.setDisabled((!D&&r)||(D&&!D.href));H.setActive(!!D&&(!D.name&&!D.id))}if(H=u.get("unlink")){H.setDisabled(!D&&r);H.setActive(!!D&&!D.name&&!D.id)}if(H=u.get("anchor")){H.setActive(!r&&!!D&&(D.name||(D.id&&!D.href)))}D=q("IMG");if(H=u.get("image")){H.setActive(!r&&!!D&&E.className.indexOf("mceItem")==-1)}if(H=u.get("styleselect")){z._importClasses();k=[];f(H.items,function(n){k.push(n.value)});j=o.formatter.matchAll(k);H.select(j[0]);h.each(j,function(p,n){if(n>0){H.mark(p)}})}if(H=u.get("formatselect")){D=q(o.dom.isBlock);if(D){H.select(D.nodeName.toLowerCase())}}q(function(p){if(p.nodeName==="SPAN"){if(!x&&p.className){x=p.className}}if(o.dom.is(p,A.theme_advanced_font_selector)){if(!l&&p.style.fontSize){l=p.style.fontSize}if(!w&&p.style.fontFamily){w=p.style.fontFamily.replace(/[\"\']+/g,"").replace(/^([^,]+).*/,"$1").toLowerCase()}if(!C&&p.style.color){C=p.style.color}if(!m&&p.style.backgroundColor){m=p.style.backgroundColor}}return false});if(H=u.get("fontselect")){H.select(function(n){return n.replace(/^([^,]+).*/,"$1").toLowerCase()==w})}if(H=u.get("fontsizeselect")){if(A.theme_advanced_runtime_fontsize&&!l&&!x){l=o.dom.getStyle(E,"fontSize",true)}H.select(function(n){if(n.fontSize&&n.fontSize===l){return true}if(n["class"]&&n["class"]===x){return true}})}if(A.theme_advanced_show_current_color){function B(p,n){if(H=u.get(p)){if(!n){n=H.settings.default_color}if(n!==H.value){H.displayColor(n)}}}B("forecolor",C);B("backcolor",m)}if(A.theme_advanced_show_current_color){function B(p,n){if(H=u.get(p)){if(!n){n=H.settings.default_color}if(n!==H.value){H.displayColor(n)}}}B("forecolor",C);B("backcolor",m)}if(A.theme_advanced_path&&A.theme_advanced_statusbar_location){D=i.get(o.id+"_path")||i.add(o.id+"_path_row","span",{id:o.id+"_path"});if(z.statusKeyboardNavigation){z.statusKeyboardNavigation.destroy();z.statusKeyboardNavigation=null}i.setHTML(D,"");q(function(I){var p=I.nodeName.toLowerCase(),s,v,t="";if(I.nodeType!=1||p==="br"||I.getAttribute("data-mce-bogus")||i.hasClass(I,"mceItemHidden")||i.hasClass(I,"mceItemRemoved")){return}if(h.isIE&&I.scopeName!=="HTML"&&I.scopeName){p=I.scopeName+":"+p}p=p.replace(/mce\:/g,"");switch(p){case"b":p="strong";break;case"i":p="em";break;case"img":if(y=i.getAttrib(I,"src")){t+="src: "+y+" "}break;case"a":if(y=i.getAttrib(I,"name")){t+="name: "+y+" ";p+="#"+y}if(y=i.getAttrib(I,"href")){t+="href: "+y+" "}break;case"font":if(y=i.getAttrib(I,"face")){t+="font: "+y+" "}if(y=i.getAttrib(I,"size")){t+="size: "+y+" "}if(y=i.getAttrib(I,"color")){t+="color: "+y+" "}break;case"span":if(y=i.getAttrib(I,"style")){t+="style: "+y+" "}break}if(y=i.getAttrib(I,"id")){t+="id: "+y+" "}if(y=I.className){y=y.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g,"");if(y){t+="class: "+y+" ";if(o.dom.isBlock(I)||p=="img"||p=="span"){p+="."+y}}}p=p.replace(/(html:)/g,"");p={name:p,node:I,title:t};z.onResolveName.dispatch(z,p);t=p.title;p=p.name;v=i.create("a",{href:"javascript:;",role:"button",onmousedown:"return false;",title:t,"class":"mcePath_"+(G++)},p);if(D.hasChildNodes()){D.insertBefore(i.create("span",{"aria-hidden":"true"},"\u00a0\u00bb "),D.firstChild);D.insertBefore(v,D.firstChild)}else{D.appendChild(v)}},o.getBody());if(i.select("a",D).length>0){z.statusKeyboardNavigation=new h.ui.KeyboardNavigation({root:o.id+"_path_row",items:i.select("a",D),excludeFromTabOrder:true,onCancel:function(){o.focus()}},i)}}},_sel:function(j){this.editor.execCommand("mceSelectNodeDepth",false,j)},_mceInsertAnchor:function(l,k){var j=this.editor;j.windowManager.open({url:this.url+"/anchor.htm",width:320+parseInt(j.getLang("advanced.anchor_delta_width",0)),height:90+parseInt(j.getLang("advanced.anchor_delta_height",0)),inline:true},{theme_url:this.url})},_mceCharMap:function(){var j=this.editor;j.windowManager.open({url:this.url+"/charmap.htm",width:550+parseInt(j.getLang("advanced.charmap_delta_width",0)),height:265+parseInt(j.getLang("advanced.charmap_delta_height",0)),inline:true},{theme_url:this.url})},_mceHelp:function(){var j=this.editor;j.windowManager.open({url:this.url+"/about.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceShortcuts:function(){var j=this.editor;j.windowManager.open({url:this.url+"/shortcuts.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceColorPicker:function(l,k){var j=this.editor;k=k||{};j.windowManager.open({url:this.url+"/color_picker.htm",width:375+parseInt(j.getLang("advanced.colorpicker_delta_width",0)),height:250+parseInt(j.getLang("advanced.colorpicker_delta_height",0)),close_previous:false,inline:true},{input_color:k.color,func:k.func,theme_url:this.url})},_mceCodeEditor:function(k,l){var j=this.editor;j.windowManager.open({url:this.url+"/source_editor.htm",width:parseInt(j.getParam("theme_advanced_source_editor_width",720)),height:parseInt(j.getParam("theme_advanced_source_editor_height",580)),inline:true,resizable:true,maximizable:true},{theme_url:this.url})},_mceImage:function(k,l){var j=this.editor;if(j.dom.getAttrib(j.selection.getNode(),"class","").indexOf("mceItem")!=-1){return}j.windowManager.open({url:this.url+"/image.htm",width:355+parseInt(j.getLang("advanced.image_delta_width",0)),height:275+parseInt(j.getLang("advanced.image_delta_height",0)),inline:true},{theme_url:this.url})},_mceLink:function(k,l){var j=this.editor;j.windowManager.open({url:this.url+"/link.htm",width:310+parseInt(j.getLang("advanced.link_delta_width",0)),height:200+parseInt(j.getLang("advanced.link_delta_height",0)),inline:true},{theme_url:this.url})},_mceNewDocument:function(){var j=this.editor;j.windowManager.confirm("advanced.newdocument",function(k){if(k){j.execCommand("mceSetContent",false,"")}})},_mceForeColor:function(){var j=this;this._mceColorPicker(0,{color:j.fgColor,func:function(k){j.fgColor=k;j.editor.execCommand("ForeColor",false,k)}})},_mceBackColor:function(){var j=this;this._mceColorPicker(0,{color:j.bgColor,func:function(k){j.bgColor=k;j.editor.execCommand("HiliteColor",false,k)}})},_ufirst:function(j){return j.substring(0,1).toUpperCase()+j.substring(1)}});h.ThemeManager.add("advanced",h.themes.AdvancedTheme)}(tinymce));
\ No newline at end of file