editor.js
上传用户:whzhongbo
上传日期:2022-07-31
资源大小:1531k
文件大小:46k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

DOS

  1. //
  2. // htmlArea v2.03 - Copyright (c) 2002 interactivetools.com, inc.
  3. // This copyright notice MUST stay intact for use (see license.txt).
  4. //
  5. // A free WYSIWYG editor replacement for <textarea> fields.
  6. // translated by xydw.com
  7. // For full source code and docs, visit http://www.interactivetools.com/
  8. //
  9. // write out styles for UI buttons
  10. document.write('<style type="text/css">n');
  11. document.write('.btn     { width: 22px; height: 22px; border: 1px solid buttonface; margin: 0; padding: 0; }n');
  12. document.write('.btnOver { width: 22px; height: 22px; border: 1px outset; }n');
  13. document.write('.btnDown { width: 22px; height: 22px; border: 1px inset; background-color: buttonhighlight; }n');
  14. document.write('.btnNA   { width: 22px; height: 22px; border: 1px solid buttonface; filter: alpha(opacity=25); }n');
  15. document.write('.cMenu     { background-color: threedface; color: menutext; cursor: Default; font-family: MS Sans Serif; font-size: 8pt; padding: 2 12 2 16; }');
  16. document.write('.cMenuOver { background-color: highlight; color: highlighttext; cursor: Default; font-family: MS Sans Serif; font-size: 8pt; padding: 2 12 2 16; }');
  17. document.write('.cMenuDivOuter { background-color: threedface; height: 9 }');
  18. document.write('.cMenuDivInner { margin: 0 4 0 4; border-width: 1; border-style: solid; border-color: threedshadow threedhighlight threedhighlight threedshadow; }');
  19. document.write('</style>n');
  20. /* ---------------------------------------------------------------------- *
  21.   Function    : editor_defaultConfig
  22.   Description : default configuration settings for wysiwyg editor
  23. * ---------------------------------------------------------------------- */
  24. function editor_defaultConfig(objname) {
  25. this.version = "2.03"
  26. this.width =  "auto";
  27. this.height = "auto";
  28. this.bodyStyle = 'background-color: #FFFFFF; font-family: "宋体"; font-size: 12px;';
  29. this.imgURL = _editor_url + '/Popups/images/';
  30. this.debug  = 0;
  31. this.replaceNextlines = 0; // replace nextlines from spaces (on output)
  32. this.plaintextInput = 0;   // replace nextlines with breaks (on input)
  33. this.toolbar = [
  34.     ['fontname'],
  35.     ['fontsize'],
  36. //    ['fontstyle'],
  37. //    ['linebreak'],
  38.     ['bold','italic','underline','separator'],
  39. //  ['strikethrough','subscript','superscript','separator'],
  40.     ['justifyleft','justifycenter','justifyright','separator'],
  41.     ['OrderedList','UnOrderedList','Outdent','Indent','separator'],
  42.     ['forecolor','backcolor','separator'],
  43.     ['HorizontalRule','Createlink','InsertImage','InsertTable','htmlmode','separator'],
  44. //  ['custom1','custom2','custom3','separator'],
  45.     ['popupeditor','about']];
  46. this.fontnames = {
  47.     "宋体":            "宋体",
  48.     "黑体":            "黑体",
  49.     "楷体_GB2312":     "楷体_GB2312",
  50.     "隶书":            "隶书",
  51.     "Comic Sans MS":   "Comic Sans MS",
  52.     "Arial":           "arial, helvetica, sans-serif",
  53.     "Courier New":     "courier new, courier, mono",
  54.     "Georgia":         "Georgia, Times New Roman, Times, Serif",
  55.     "Tahoma":          "Tahoma, Arial, Helvetica, sans-serif",
  56.     "Times New Roman": "times new roman, times, serif",
  57.     "Verdana":         "Verdana, Arial, Helvetica, sans-serif",
  58.     "impact":          "impact",
  59.     "WingDings":       "WingDings"};
  60. this.fontsizes = {
  61.     "1 (8 pt)":  "1",
  62.     "2 (10 pt)": "2",
  63.     "3 (12 pt)": "3",
  64.     "4 (14 pt)": "4",
  65.     "5 (18 pt)": "5",
  66.     "6 (24 pt)": "6",
  67.     "7 (36 pt)": "7"
  68.   };
  69. //this.stylesheet = "http://www.xydw.com/sample.css"; // full URL to stylesheet
  70. this.fontstyles = [     // make sure these exist in the header of page the content is being display as well in or they won't work!
  71. //    { name: "headline",     className: "headline",  classStyle: "font-family: arial black, arial; font-size: 28px; letter-spacing: -2px;" },
  72. //    { name: "arial red",    className: "headline2", classStyle: "font-family: arial black, arial; font-size: 12px; letter-spacing: -2px; color:red" },
  73. //    { name: "verdana blue", className: "headline4", classStyle: "font-family: verdana; font-size: 18px; letter-spacing: -2px; color:blue" },
  74. ];
  75. this.btnList = {
  76.     // buttonName:    commandID,               title,                onclick,                   image,             
  77.     "bold":           ['Bold',                 '加粗',               'editor_action(this.id)',  'ed_format_bold.gif'],
  78.     "italic":         ['Italic',               '斜体',             'editor_action(this.id)',  'ed_format_italic.gif'],
  79.     "underline":      ['Underline',            '下划线',          'editor_action(this.id)',  'ed_format_underline.gif'],
  80.     "strikethrough":  ['StrikeThrough',        'Strikethrough',      'editor_action(this.id)',  'ed_format_strike.gif'],
  81.     "subscript":      ['SubScript',            'Subscript',          'editor_action(this.id)',  'ed_format_sub.gif'],
  82.     "superscript":    ['SuperScript',          'Superscript',        'editor_action(this.id)',  'ed_format_sup.gif'],
  83.     "justifyleft":    ['JustifyLeft',          '左对齐',       'editor_action(this.id)',  'ed_align_left.gif'],
  84.     "justifycenter":  ['JustifyCenter',        '居中',     'editor_action(this.id)',  'ed_align_center.gif'],
  85.     "justifyright":   ['JustifyRight',         '右对齐',      'editor_action(this.id)',  'ed_align_right.gif'],
  86.     "orderedlist":    ['InsertOrderedList',    '列表',       'editor_action(this.id)',  'ed_list_num.gif'],
  87.     "unorderedlist":  ['InsertUnorderedList',  '列表2',      'editor_action(this.id)',  'ed_list_bullet.gif'],
  88.     "outdent":        ['Outdent',              '左缩进',    'editor_action(this.id)',  'ed_indent_less.gif'],
  89.     "indent":         ['Indent',               '右缩进',    'editor_action(this.id)',  'ed_indent_more.gif'],
  90.     "forecolor":      ['ForeColor',            '字体颜色',         'editor_action(this.id)',  'ed_color_fg.gif'],
  91.     "backcolor":      ['BackColor',            '背景颜色',   'editor_action(this.id)',  'ed_color_bg.gif'],
  92.     "horizontalrule": ['InsertHorizontalRule', '水平线',    'editor_action(this.id)',  'ed_hr.gif'],
  93.     "createlink":     ['CreateLink',           '超连接',    'editor_action(this.id)',  'ed_link.gif'],
  94.     "insertimage":    ['InsertImage',          '插入图片',       'editor_action(this.id)',  'ed_image.gif'],
  95.     "inserttable":    ['InsertTable',          '插入表格',       'editor_action(this.id)',  'insert_table.gif'],
  96.     "htmlmode":       ['HtmlMode',             '编辑HTML',   'editor_setmode(''+objname+'')', 'ed_html.gif'],
  97.     "popupeditor":    ['popupeditor',          '新窗口中编辑',     'editor_action(this.id)',  'fullscreen_maximize.gif'],
  98.     "about":          ['about',                '版权说明',  'editor_about(''+objname+'')',  'ed_about.gif'],
  99.     // Add custom buttons here:
  100.     "custom1":           ['custom1',         'Purpose of button 1',  'editor_action(this.id)',  'ed_custom.gif'],
  101.     "custom2":           ['custom2',         'Purpose of button 2',  'editor_action(this.id)',  'ed_custom.gif'],
  102.     "custom3":           ['custom3',         'Purpose of button 3',  'editor_action(this.id)',  'ed_custom.gif'],
  103.    // end: custom buttons
  104.     "help":           ['showhelp',             'Help using editor',  'editor_action(this.id)',  'ed_help.gif']};
  105. }
  106. /* ---------------------------------------------------------------------- *
  107.   Function    : editor_generate
  108.   Description : replace textarea with wysiwyg editor
  109.   Usage       : editor_generate("textarea_id",[height],[width]);
  110.   Arguments   : objname - ID of textarea to replace
  111.                 w       - width of wysiwyg editor
  112.                 h       - height of wysiwyg editor
  113. * ---------------------------------------------------------------------- */
  114. function editor_generate(objname,userConfig) {
  115.   // Default Settings
  116.   var config = new editor_defaultConfig(objname);
  117.   if (userConfig) { 
  118.     for (var thisName in userConfig) {
  119.       if (userConfig[thisName]) { config[thisName] = userConfig[thisName]; }
  120.     }
  121.   }
  122.   document.all[objname].config = config;                  // store config settings
  123.   // set size to specified size or size of original object
  124.   var obj    = document.all[objname];
  125.   if (!config.width || config.width == "auto") {
  126.     if      (obj.style.width) { config.width = obj.style.width; }      // use css style
  127.     else if (obj.cols)        { config.width = (obj.cols * 8) + 22; }  // col width + toolbar
  128.     else                      { config.width = '100%'; }               // default
  129.   }
  130.   if (!config.height || config.height == "auto") {
  131.     if      (obj.style.height) { config.height = obj.style.height; }   // use css style
  132.     else if (obj.rows)         { config.height = obj.rows * 17 }       // row height
  133.     else                       { config.height = '200'; }              // default
  134.   }
  135.   var tblOpen  = '<table border=0 cellspacing=0 cellpadding=0 style="float: left;"  unselectable="on"><tr><td style="border: none; padding: 1 0 0 0"><nobr>';
  136.   var tblClose = '</nobr></td></tr></table>n';
  137.   // build button toolbar
  138.   var toolbar = '';
  139.   var btnGroup, btnItem, aboutEditor;
  140.   for (var btnGroup in config.toolbar) {
  141.     // linebreak
  142.     if (config.toolbar[btnGroup].length == 1 &&
  143.         config.toolbar[btnGroup][0].toLowerCase() == "linebreak") {
  144.       toolbar += '<br clear="all">';
  145.       continue;
  146.     }
  147.     toolbar += tblOpen;
  148.     for (var btnItem in config.toolbar[btnGroup]) {
  149.       var btnName = config.toolbar[btnGroup][btnItem].toLowerCase();
  150.       // fontname
  151.       if (btnName == "fontname") {
  152.         toolbar += '<select id="_' +objname+ '_FontName" onChange="editor_action(this.id)" unselectable="on" style="margin: 1 2 0 2; font-size: 12px;">';
  153.         for (var fontname in config.fontnames) {
  154.           toolbar += '<option value="' +config.fontnames[fontname]+ '">' +fontname+ '</option>'
  155.         }
  156.         toolbar += '</select>';
  157.         continue;
  158.       }
  159.       // fontsize
  160.       if (btnName == "fontsize") {
  161.         toolbar += '<select id="_' +objname+ '_FontSize" onChange="editor_action(this.id)" unselectable="on" style="margin: 1 2 0 0; font-size: 12px;">';
  162.         for (var fontsize in config.fontsizes) {
  163.           toolbar += '<option value="' +config.fontsizes[fontsize]+ '">' +fontsize+ '</option>'
  164.         }
  165.         toolbar += '</select>n';
  166.         continue;
  167.       }
  168.       // font style
  169.       if (btnName == "fontstyle") {
  170.         toolbar += '<select id="_' +objname+ '_FontStyle" onChange="editor_action(this.id)" unselectable="on" style="margin: 1 2 0 0; font-size: 12px;">';
  171.         + '<option value="">Font Style</option>';
  172.         for (var i in config.fontstyles) {
  173.           var fontstyle = config.fontstyles[i];
  174.           toolbar += '<option value="' +fontstyle.className+ '">' +fontstyle.name+ '</option>'
  175.         }
  176.         toolbar += '</select>';
  177.         continue;
  178.       }
  179.       // separator
  180.       if (btnName == "separator") {
  181.         toolbar += '<span style="border: 1px inset; width: 1px; font-size: 16px; height: 16px; margin: 0 3 0 3"></span>';
  182.         continue;
  183.       }
  184.       // buttons
  185.       var btnObj = config.btnList[btnName];
  186.       if (btnName == 'linebreak') { alert("htmlArea error: 'linebreak' must be in a subgroup by itself, not with other buttons.nnhtmlArea wysiwyg editor not created."); return; }
  187.       if (!btnObj) { alert("htmlArea error: button '" +btnName+ "' not found in button list when creating the wysiwyg editor for '"+objname+"'.nPlease make sure you entered the button name correctly.nnhtmlArea wysiwyg editor not created."); return; }
  188.       var btnCmdID   = btnObj[0];
  189.       var btnTitle   = btnObj[1];
  190.       var btnOnClick = btnObj[2];
  191.       var btnImage   = btnObj[3];
  192.       toolbar += '<button title="' +btnTitle+ '" id="_' +objname+ '_' +btnCmdID+ '" class="btn" onClick="' +btnOnClick+ '" onmouseover="if(this.className=='btn'){this.className='btnOver'}" onmouseout="if(this.className=='btnOver'){this.className='btn'}" unselectable="on"><img src="' +config.imgURL + btnImage+ '" border=0 unselectable="on"></button>';
  193.     } // end of button sub-group
  194.     toolbar += tblClose;
  195.   } // end of entire button set
  196.   // build editor
  197.   var editor = '<span id="_editor_toolbar"><table border=0 cellspacing=0 cellpadding=0 bgcolor="buttonface" style="padding: 1 0 0 2" width=' + config.width + ' unselectable="on"><tr><td>n'
  198.   + toolbar
  199.   + '</td></tr></table>n'
  200.   + '</td></tr></table></span>n'
  201.   + '<textarea ID="_' +objname + '_editor" style="width:' +config.width+ '; height:' +config.height+ '; margin-top: -1px; margin-bottom: -1px;" wrap=soft></textarea>';
  202.   // add context menu
  203.   editor += '<div id="_' +objname + '_cMenu" style="position: absolute; visibility: hidden;"></div>';
  204.   //  hide original textarea and insert htmlarea after it
  205.   if (!config.debug) { document.all[objname].style.display = "none"; }
  206.   if (config.plaintextInput) {     // replace nextlines with breaks
  207.     var contents = document.all[objname].value;
  208.     contents = contents.replace(/rn/g, '<br>');
  209.     contents = contents.replace(/n/g, '<br>');
  210.     contents = contents.replace(/r/g, '<br>');
  211.     document.all[objname].value = contents;
  212.   }
  213.   // insert wysiwyg
  214.   document.all[objname].insertAdjacentHTML('afterEnd', editor)
  215.   // convert htmlarea from textarea to wysiwyg editor
  216.   editor_setmode(objname, 'init');
  217.   // call filterOutput when user submits form
  218.   for (var idx=0; idx < document.forms.length; idx++) {
  219.     var r = document.forms[idx].attachEvent('onsubmit', function() { editor_filterOutput(objname); });
  220.     if (!r) { alert("Error attaching event to form!"); }
  221.   }
  222. return true;
  223. }
  224. /* ---------------------------------------------------------------------- *
  225.   Function    : editor_action
  226.   Description : perform an editor command on selected editor content
  227.   Usage       :
  228.   Arguments   : button_id - button id string with editor and action name
  229. * ---------------------------------------------------------------------- */
  230. function editor_action(button_id) {
  231.   // split up button name into "editorID" and "cmdID"
  232.   var BtnParts = Array();
  233.   BtnParts = button_id.split("_");
  234.   var objname    = button_id.replace(/^_(.*)_[^_]*$/, '$1');
  235.   var cmdID      = BtnParts[ BtnParts.length-1 ];
  236.   var button_obj = document.all[button_id];
  237.   var editor_obj = document.all["_" +objname + "_editor"];
  238.   var config     = document.all[objname].config;
  239.   // help popup
  240.   if (cmdID == 'showhelp') {
  241.     window.open(_editor_url + "popups/editor_help.html", 'EditorHelp');
  242.     return;
  243.   }
  244.   // popup editor
  245.   if (cmdID == 'popupeditor') {
  246.     window.open(_editor_url + "popups/fullscreen.html?"+objname,
  247.                 'FullScreen',
  248.                 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=640,height=480');
  249.     return;
  250.   }
  251.   // check editor mode (don't perform actions in textedit mode)
  252.   if (editor_obj.tagName.toLowerCase() == 'textarea') { return; }
  253.   var editdoc = editor_obj.contentWindow.document;
  254.   editor_focus(editor_obj);
  255.   // get index and value for pulldowns
  256.   var idx = button_obj.selectedIndex;
  257.   var val = (idx != null) ? button_obj[ idx ].value : null;
  258.   if (0) {}   // use else if for easy cutting and pasting
  259.   //
  260.   // CUSTOM BUTTONS START HERE
  261.   //
  262.   // Custom1
  263.   else if (cmdID == 'custom1') {
  264.     alert("Hello, I am custom button 1!");
  265.   }
  266.   // Custom2
  267.   else if (cmdID == 'custom2') {  // insert some text from a popup window
  268.     var myTitle = "This is a custom title";
  269.     var myText = showModalDialog(_editor_url + "popups/custom2.html",
  270.                                  myTitle,      // str or obj specified here can be read from dialog as "window.dialogArguments"
  271.                                  "resizable: yes; help: no; status: no; scroll: no; ");
  272.     if (myText) { editor_insertHTML(objname, myText); }
  273.   }
  274.   // Custom3
  275.   else if (cmdID == 'custom3') {  // insert some text
  276.     editor_insertHTML(objname, "It's easy to add buttons that insert text!");
  277.   }
  278.   //
  279.   // END OF CUSTOM BUTTONS
  280.   //
  281.   // FontName
  282.   else if (cmdID == 'FontName' && val) {
  283.     editdoc.execCommand(cmdID,0,val);
  284.   }
  285.   // FontSize
  286.   else if (cmdID == 'FontSize' && val) {
  287.     editdoc.execCommand(cmdID,0,val);
  288.   }
  289.   // FontStyle (change CSS className)
  290.   else if (cmdID == 'FontStyle' && val) {
  291.     editdoc.execCommand('RemoveFormat');
  292.     editdoc.execCommand('FontName',0,'636c6173734e616d6520706c616365686f6c646572');
  293.     var fontArray = editdoc.all.tags("FONT");
  294.     for (i=0; i<fontArray.length; i++) {
  295.       if (fontArray[i].face == '636c6173734e616d6520706c616365686f6c646572') {
  296.         fontArray[i].face = "";
  297.         fontArray[i].className = val;
  298.         fontArray[i].outerHTML = fontArray[i].outerHTML.replace(/face=['"]+/, "");
  299.         }
  300.     }
  301.     button_obj.selectedIndex =0;
  302.   }
  303.   // fgColor and bgColor
  304.   else if (cmdID == 'ForeColor' || cmdID == 'BackColor') {
  305.     var oldcolor = _dec_to_rgb(editdoc.queryCommandValue(cmdID));
  306.     var newcolor = showModalDialog(_editor_url + "popups/select_color.html", oldcolor, "resizable: no; help: no; status: no; scroll: no;");
  307.     if (newcolor != null) { editdoc.execCommand(cmdID, false, "#"+newcolor); }
  308.   }
  309.   // execute command for buttons - if we didn't catch the cmdID by here we'll assume it's a
  310.   // commandID and pass it to execCommand().   See http://msdn.microsoft.com/workshop/author/dhtml/reference/commandids.asp
  311.   else {
  312.     // subscript & superscript, disable one before enabling the other
  313.     if (cmdID.toLowerCase() == 'subscript' && editdoc.queryCommandState('superscript')) { editdoc.execCommand('superscript'); }
  314.     if (cmdID.toLowerCase() == 'superscript' && editdoc.queryCommandState('subscript')) { editdoc.execCommand('subscript'); }
  315.     // insert link
  316.     if (cmdID.toLowerCase() == 'createlink'){
  317.       editdoc.execCommand(cmdID,1);
  318.     }
  319.     // insert image
  320.     else if (cmdID.toLowerCase() == 'insertimage'){
  321.       showModalDialog(_editor_url + "popups/insert_image.html", editdoc, "resizable: no; help: no; status: no; scroll: no; ");
  322.     }
  323.     // insert table
  324.     else if (cmdID.toLowerCase() == 'inserttable'){
  325.       showModalDialog(_editor_url + "popups/insert_table.html?"+objname,window,"resizable: yes; help: no; status: no; scroll: no; ");
  326.     }
  327.     // all other commands microsoft Command Identifiers
  328.     else { editdoc.execCommand(cmdID); }
  329.   }
  330.   editor_event(objname);
  331. }
  332. /* ---------------------------------------------------------------------- *
  333.   Function    : editor_event
  334.   Description : called everytime an editor event occurs
  335.   Usage       : editor_event(objname, runDelay, eventName)
  336.   Arguments   : objname - ID of textarea to replace
  337.                 runDelay: -1 = run now, no matter what
  338.                           0  = run now, if allowed
  339.                         1000 = run in 1 sec, if allowed at that point
  340. * ---------------------------------------------------------------------- */
  341. function editor_event(objname,runDelay) {
  342.   var config = document.all[objname].config;
  343.   var editor_obj  = document.all["_" +objname+  "_editor"];       // html editor object
  344.   if (runDelay == null) { runDelay = 0; }
  345.   var editdoc;
  346.   var editEvent = editor_obj.contentWindow ? editor_obj.contentWindow.event : event;
  347.   // catch keypress events
  348.     if (editEvent && editEvent.keyCode) {
  349.       var ord       = editEvent.keyCode;    // ascii order of key pressed
  350.       var ctrlKey   = editEvent.ctrlKey;
  351.       var altKey    = editEvent.altKey;
  352.       var shiftKey  = editEvent.shiftKey;
  353.       if (ord == 16) { return; }  // ignore shift key by itself
  354.       if (ord == 17) { return; }  // ignore ctrl key by itself
  355.       if (ord == 18) { return; }  // ignore alt key by itself
  356.        // cancel ENTER key and insert <BR> instead
  357. //       if (ord == 13 && editEvent.type == 'keypress') {
  358. //         editEvent.returnValue = false;
  359. //         editor_insertHTML(objname, "<br>");
  360. //         return;
  361. //       }
  362.       if (ctrlKey && (ord == 122 || ord == 90)) {     // catch ctrl-z (UNDO)
  363. //      TODO: Add our own undo/redo functionality
  364. //        editEvent.cancelBubble = true;
  365.         return;
  366.       }
  367.       if ((ctrlKey && (ord == 121 || ord == 89)) ||
  368.           ctrlKey && shiftKey && (ord == 122 || ord == 90)) {     // catch ctrl-y, ctrl-shift-z (REDO)
  369. //      TODO: Add our own undo/redo functionality
  370.         return;
  371.       }
  372.     }
  373.   // setup timer for delayed updates (some events take time to complete)
  374.   if (runDelay > 0) { return setTimeout(function(){ editor_event(objname); }, runDelay); }
  375.   // don't execute more than 3 times a second (eg: too soon after last execution)
  376.   if (this.tooSoon == 1 && runDelay >= 0) { this.queue = 1; return; } // queue all but urgent events
  377.   this.tooSoon = 1;
  378.   setTimeout(function(){
  379.     this.tooSoon = 0;
  380.     if (this.queue) { editor_event(objname,-1); };
  381.     this.queue = 0;
  382.     }, 333);  // 1/3 second
  383.   editor_updateOutput(objname);
  384.   editor_updateToolbar(objname);
  385. }
  386. /* ---------------------------------------------------------------------- *
  387.   Function    : editor_updateToolbar
  388.   Description : update toolbar state
  389.   Usage       :
  390.   Arguments   : objname - ID of textarea to replace
  391.                 action  - enable, disable, or update (default action)
  392. * ---------------------------------------------------------------------- */
  393. function editor_updateToolbar(objname,action) {
  394.   var config = document.all[objname].config;
  395.   var editor_obj  = document.all["_" +objname+  "_editor"];
  396.   // disable or enable toolbar
  397.   if (action == "enable" || action == "disable") {
  398.     var tbItems = new Array('FontName','FontSize','FontStyle');                           // add pulldowns
  399.     for (var btnName in config.btnList) { tbItems.push(config.btnList[btnName][0]); } // add buttons
  400.     for (var idxN in tbItems) {
  401.       var cmdID = tbItems[idxN].toLowerCase();
  402.       var tbObj = document.all["_" +objname+ "_" +tbItems[idxN]];
  403.       if (cmdID == "htmlmode" || cmdID == "about" || cmdID == "showhelp" || cmdID == "popupeditor") { continue; } // don't change these buttons
  404.       if (tbObj == null) { continue; }
  405.       var isBtn = (tbObj.tagName.toLowerCase() == "button") ? true : false;
  406.       if (action == "enable")  { tbObj.disabled = false; if (isBtn) { tbObj.className = 'btn' }}
  407.       if (action == "disable") { tbObj.disabled = true;  if (isBtn) { tbObj.className = 'btnNA' }}
  408.     }
  409.     return;
  410.   }
  411.   // update toolbar state
  412.   if (editor_obj.tagName.toLowerCase() == 'textarea') { return; }   // don't update state in textedit mode
  413.   var editdoc = editor_obj.contentWindow.document;
  414.   // Set FontName pulldown
  415.   var fontname_obj = document.all["_" +objname+ "_FontName"];
  416.   if (fontname_obj) {
  417.     var fontname = editdoc.queryCommandValue('FontName');
  418.     if (fontname == null) { fontname_obj.value = null; }
  419.     else {
  420.       var found = 0;
  421.       for (i=0; i<fontname_obj.length; i++) {
  422.         if (fontname.toLowerCase() == fontname_obj[i].text.toLowerCase()) {
  423.           fontname_obj.selectedIndex = i;
  424.           found = 1;
  425.         }
  426.       }
  427.       if (found != 1) { fontname_obj.value = null; }     // for fonts not in list
  428.     }
  429.   }
  430.   // Set FontSize pulldown
  431.   var fontsize_obj = document.all["_" +objname+ "_FontSize"];
  432.   if (fontsize_obj) {
  433.     var fontsize = editdoc.queryCommandValue('FontSize');
  434.     if (fontsize == null) { fontsize_obj.value = null; }
  435.     else {
  436.       var found = 0;
  437.       for (i=0; i<fontsize_obj.length; i++) {
  438.         if (fontsize == fontsize_obj[i].value) { fontsize_obj.selectedIndex = i; found=1; }
  439.       }
  440.       if (found != 1) { fontsize_obj.value = null; }     // for sizes not in list
  441.     }
  442.   }
  443.   // Set FontStyle pulldown
  444.   var classname_obj = document.all["_" +objname+ "_FontStyle"];
  445.   if (classname_obj) {
  446.     var curRange = editdoc.selection.createRange();
  447.     // check element and element parents for class names
  448.     var pElement;
  449.     if (curRange.length) { pElement = curRange[0]; }              // control tange
  450.     else                 { pElement = curRange.parentElement(); } // text range
  451.     while (pElement && !pElement.className) { pElement = pElement.parentElement; }  // keep going up
  452.     var thisClass = pElement ? pElement.className.toLowerCase() : "";
  453.     if (!thisClass && classname_obj.value) { classname_obj.value = null; }
  454.     else {
  455.       var found = 0;
  456.       for (i=0; i<classname_obj.length; i++) {
  457.         if (thisClass == classname_obj[i].value.toLowerCase()) {
  458.           classname_obj.selectedIndex = i;
  459.           found=1;
  460.         }
  461.       }
  462.       if (found != 1) { classname_obj.value = null; }     // for classes not in list
  463.     }
  464.   }
  465.   // update button states
  466.   var IDList = Array('Bold','Italic','Underline','StrikeThrough','SubScript','SuperScript','JustifyLeft','JustifyCenter','JustifyRight','InsertOrderedList','InsertUnorderedList');
  467.   for (i=0; i<IDList.length; i++) {
  468.     var btnObj = document.all["_" +objname+ "_" +IDList[i]];
  469.     if (btnObj == null) { continue; }
  470.     var cmdActive = editdoc.queryCommandState( IDList[i] );
  471.     if (!cmdActive)  {                                  // option is OK
  472.       if (btnObj.className != 'btn') { btnObj.className = 'btn'; }
  473.       if (btnObj.disabled  != false) { btnObj.disabled = false; }
  474.     } else if (cmdActive)  {                            // option already applied or mixed content
  475.       if (btnObj.className != 'btnDown') { btnObj.className = 'btnDown'; }
  476.       if (btnObj.disabled  != false)   { btnObj.disabled = false; }
  477.     }
  478.   }
  479. }
  480. /* ---------------------------------------------------------------------- *
  481.   Function    : editor_updateOutput
  482.   Description : update hidden output field with data from wysiwg
  483. * ---------------------------------------------------------------------- */
  484. function editor_updateOutput(objname) {
  485.   var config     = document.all[objname].config;
  486.   var editor_obj  = document.all["_" +objname+  "_editor"];       // html editor object
  487.   var editEvent = editor_obj.contentWindow ? editor_obj.contentWindow.event : event;
  488.   var isTextarea = (editor_obj.tagName.toLowerCase() == 'textarea');
  489.   var editdoc = isTextarea ? null : editor_obj.contentWindow.document;
  490.   // get contents of edit field
  491.   var contents;
  492.   if (isTextarea) { contents = editor_obj.value; }
  493.   else            { contents = editdoc.body.innerHTML; }
  494.   // check if contents has changed since the last time we ran this routine
  495.   if (config.lastUpdateOutput && config.lastUpdateOutput == contents) { return; }
  496.   else { config.lastUpdateOutput = contents; }
  497.   // update hidden output field
  498.   document.all[objname].value = contents;
  499. }
  500. /* ---------------------------------------------------------------------- *
  501.   Function    : editor_filterOutput
  502.   Description :
  503. * ---------------------------------------------------------------------- */
  504. function editor_filterOutput(objname) {
  505.   editor_updateOutput(objname);
  506.   var contents = document.all[objname].value;
  507.   var config   = document.all[objname].config;
  508.   // ignore blank contents
  509.   if (contents.toLowerCase() == '<p>&nbsp;</p>') { contents = ""; }
  510.   // filter tag - this code is run for each HTML tag matched
  511.   var filterTag = function(tagBody,tagName,tagAttr) {
  512.     tagName = tagName.toLowerCase();
  513.     var closingTag = (tagBody.match(/^<//)) ? true : false;
  514.     // fix placeholder URLS - remove absolute paths that IE adds
  515.     if (tagName == 'img') { tagBody = tagBody.replace(/(srcs*=s*.)[^*]*(***)/, "$1$2"); }
  516.     if (tagName == 'a')   { tagBody = tagBody.replace(/(hrefs*=s*.)[^*]*(***)/, "$1$2"); }
  517.     // add additional tag filtering here
  518.     // convert to vbCode
  519. //    if      (tagName == 'b' || tagName == 'strong') {
  520. //      if (closingTag) { tagBody = "[/b]"; } else { tagBody = "[b]"; }
  521. //    }
  522. //    else if (tagName == 'i' || tagName == 'em') {
  523. //      if (closingTag) { tagBody = "[/i]"; } else { tagBody = "[i]"; }
  524. //    }
  525. //    else if (tagName == 'u') {
  526. //      if (closingTag) { tagBody = "[/u]"; } else { tagBody = "[u]"; }
  527. //    }
  528. //    else {
  529. //      tagBody = ""; // disallow all other tags!
  530. //    }
  531.     return tagBody;
  532.   };
  533.   // match tags and call filterTag
  534.   RegExp.lastIndex = 0;
  535.     var matchTag = /</?(w+)((?:[^'">]*|'[^']*'|"[^"]*")*)>/g;   // this will match tags, but still doesn't handle container tags (textarea, comments, etc)
  536.   contents = contents.replace(matchTag, filterTag);
  537.   // remove nextlines from output (if requested)
  538.   if (config.replaceNextlines) { 
  539.     contents = contents.replace(/rn/g, ' ');
  540.     contents = contents.replace(/n/g, ' ');
  541.     contents = contents.replace(/r/g, ' ');
  542.   }
  543.   // update output with filtered content
  544.   document.all[objname].value = contents;
  545. }
  546. /* ---------------------------------------------------------------------- *
  547.   Function    : editor_setmode
  548.   Description : change mode between WYSIWYG and HTML editor
  549.   Usage       : editor_setmode(objname, mode);
  550.   Arguments   : objname - button id string with editor and action name
  551.                 mode      - init, textedit, or wysiwyg
  552. * ---------------------------------------------------------------------- */
  553. function editor_setmode(objname, mode) {
  554.   var config     = document.all[objname].config;
  555.   var editor_obj = document.all["_" +objname + "_editor"];
  556.   // wait until document is fully loaded
  557.   if (document.readyState != 'complete') {
  558.     setTimeout(function() { editor_setmode(objname,mode) }, 25);
  559.     return;
  560.   }
  561.   // define different editors
  562.   var TextEdit   = '<textarea ID="_' +objname + '_editor" style="width:' +editor_obj.style.width+ '; height:' +editor_obj.style.height+ '; margin-top: -1px; margin-bottom: -1px;"></textarea>';
  563.   var RichEdit   = '<iframe ID="_' +objname+ '_editor"    style="width:' +editor_obj.style.width+ '; height:' +editor_obj.style.height+ ';"></iframe>';
  564.  // src="' +_editor_url+ 'popups/blank.html"
  565.   //
  566.   // Switch to TEXTEDIT mode
  567.   //
  568.   if (mode == "textedit" || editor_obj.tagName.toLowerCase() == 'iframe') {
  569.     config.mode = "textedit";
  570.     var editdoc = editor_obj.contentWindow.document;
  571.     var contents = editdoc.body.createTextRange().htmlText;
  572.     editor_obj.outerHTML = TextEdit;
  573.     editor_obj = document.all["_" +objname + "_editor"];
  574.     editor_obj.value = contents;
  575.     editor_event(objname);
  576.     editor_updateToolbar(objname, "disable");  // disable toolbar items
  577.     // set event handlers
  578.     editor_obj.onkeydown   = function() { editor_event(objname); }
  579.     editor_obj.onkeypress  = function() { editor_event(objname); }
  580.     editor_obj.onkeyup     = function() { editor_event(objname); }
  581.     editor_obj.onmouseup   = function() { editor_event(objname); }
  582.     editor_obj.ondrop      = function() { editor_event(objname, 100); }     // these events fire before they occur
  583.     editor_obj.oncut       = function() { editor_event(objname, 100); }
  584.     editor_obj.onpaste     = function() { editor_event(objname, 100); }
  585.     editor_obj.onblur      = function() { editor_event(objname, -1); }
  586.     editor_updateOutput(objname);
  587.     editor_focus(editor_obj);
  588.   }
  589.   //
  590.   // Switch to WYSIWYG mode
  591.   //
  592.   else {
  593.     config.mode = "wysiwyg";
  594.     var contents = editor_obj.value;
  595.     if (mode == 'init') { contents = document.all[objname].value; } // on init use original textarea content
  596.     // create editor
  597.     editor_obj.outerHTML = RichEdit;
  598.     editor_obj = document.all["_" +objname + "_editor"];
  599.     // get iframe document object
  600.     // create editor contents (and default styles for editor)
  601.     var html = "";
  602.     html += '<html><head>n';
  603.     if (config.stylesheet) {
  604.       html += '<link href="' +config.stylesheet+ '" rel="stylesheet" type="text/css">n';
  605.     }
  606.     html += '<style>n';
  607.     html += 'body {' +config.bodyStyle+ '} n';
  608.     for (var i in config.fontstyles) {
  609.       var fontstyle = config.fontstyles[i];
  610.       if (fontstyle.classStyle) {
  611.         html += '.' +fontstyle.className+ ' {' +fontstyle.classStyle+ '}n';
  612.       }
  613.     }
  614.     html += '</style>n'
  615.       + '</head>n'
  616.       + '<body contenteditable="true" topmargin=1 leftmargin=1'
  617. // still working on this
  618. //      + ' oncontextmenu="parent.editor_cMenu_generate(window,'' +objname+ '');"'
  619.       +'>'
  620.       + contents
  621.       + '</body>n'
  622.       + '</html>n';
  623.     // write to editor window
  624.     var editdoc = editor_obj.contentWindow.document;
  625.     editdoc.open();
  626.     editdoc.write(html);
  627.     editdoc.close();
  628.     editor_updateToolbar(objname, "enable");  // enable toolbar items
  629.     // store objname under editdoc
  630.     editdoc.objname = objname;
  631.     // set event handlers
  632.     editdoc.onkeydown      = function() { editor_event(objname); }
  633.     editdoc.onkeypress     = function() { editor_event(objname); }
  634.     editdoc.onkeyup        = function() { editor_event(objname); }
  635.     editdoc.onmouseup      = function() { editor_event(objname); }
  636.     editdoc.body.ondrop    = function() { editor_event(objname, 100); }     // these events fire before they occur
  637.     editdoc.body.oncut     = function() { editor_event(objname, 100); }
  638.     editdoc.body.onpaste   = function() { editor_event(objname, 100); }
  639.     editdoc.body.onblur    = function() { editor_event(objname, -1); }
  640.     // bring focus to editor
  641.     if (mode != 'init') {             // don't focus on page load, only on mode switch
  642.       editor_focus(editor_obj);
  643.     }
  644.   }
  645.   // Call update UI
  646.   if (mode != 'init') {             // don't update UI on page load, only on mode switch
  647.     editor_event(objname);
  648.   }
  649. }
  650. /* ---------------------------------------------------------------------- *
  651.   Function    : editor_focus
  652.   Description : bring focus to the editor
  653.   Usage       : editor_focus(editor_obj);
  654.   Arguments   : editor_obj - editor object
  655. * ---------------------------------------------------------------------- */
  656. function editor_focus(editor_obj) {
  657.   // check editor mode
  658.   if (editor_obj.tagName.toLowerCase() == 'textarea') {         // textarea
  659.     var myfunc = function() { editor_obj.focus(); };
  660.     setTimeout(myfunc,100);                                     // doesn't work all the time without delay
  661.   }
  662.   else {                                                        // wysiwyg
  663.     var editdoc = editor_obj.contentWindow.document;            // get iframe editor document object
  664.     var editorRange = editdoc.body.createTextRange();           // editor range
  665.     var curRange    = editdoc.selection.createRange();          // selection range
  666.     if (curRange.length == null &&                              // make sure it's not a controlRange
  667.         !editorRange.inRange(curRange)) {                       // is selection in editor range
  668.       editorRange.collapse();                                   // move to start of range
  669.       editorRange.select();                                     // select
  670.       curRange = editorRange;
  671.     }
  672.   }
  673. }
  674. /* ---------------------------------------------------------------------- *
  675.   Function    : editor_about
  676.   Description : display "about this editor" popup
  677. * ---------------------------------------------------------------------- */
  678. function editor_about(objname) {
  679.   showModalDialog(_editor_url + "popups/about.html", window, "resizable: yes; help: no; status: no; scroll: no; ");
  680. }
  681. /* ---------------------------------------------------------------------- *
  682.   Function    : _dec_to_rgb
  683.   Description : convert dec color value to rgb hex
  684.   Usage       : var hex = _dec_to_rgb('65535');   // returns FFFF00
  685.   Arguments   : value   - dec value
  686. * ---------------------------------------------------------------------- */
  687. function _dec_to_rgb(value) {
  688.   var hex_string = "";
  689.   for (var hexpair = 0; hexpair < 3; hexpair++) {
  690.     var myByte = value & 0xFF;            // get low byte
  691.     value >>= 8;                        // drop low byte
  692.     var nybble2 = myByte & 0x0F;          // get low nybble (4 bits)
  693.     var nybble1 = (myByte >> 4) & 0x0F;   // get high nybble
  694.     hex_string += nybble1.toString(16); // convert nybble to hex
  695.     hex_string += nybble2.toString(16); // convert nybble to hex
  696.   }
  697.   return hex_string.toUpperCase();
  698. }
  699. /* ---------------------------------------------------------------------- *
  700.   Function    : editor_insertHTML
  701.   Description : insert string at current cursor position in editor.  If
  702.                 two strings are specifed, surround selected text with them.
  703.   Usage       : editor_insertHTML(objname, str1, [str2], reqSelection)
  704.   Arguments   : objname - ID of textarea
  705.                 str1 - HTML or text to insert
  706.                 str2 - HTML or text to insert (optional argument)
  707.                 reqSelection - (1 or 0) give error if no text selected
  708. * ---------------------------------------------------------------------- */
  709. function editor_insertHTML(objname, str1,str2, reqSel) {
  710.   var config     = document.all[objname].config;
  711.   var editor_obj = document.all["_" +objname + "_editor"];    // editor object
  712.   if (str1 == null) { str1 = ''; }
  713.   if (str2 == null) { str2 = ''; }
  714.   // for non-wysiwyg capable browsers just add to end of textbox
  715.   if (document.all[objname] && editor_obj == null) {
  716.     document.all[objname].focus();
  717.     document.all[objname].value = document.all[objname].value + str1 + str2;
  718.     return;
  719.   }
  720.   // error checking
  721.   if (editor_obj == null) { return alert("Unable to insert HTML.  Invalid object name '" +objname+ "'."); }
  722.   editor_focus(editor_obj);
  723.   var tagname = editor_obj.tagName.toLowerCase();
  724.   var sRange;
  725.  // insertHTML for wysiwyg iframe
  726.   if (tagname == 'iframe') {
  727.     var editdoc = editor_obj.contentWindow.document;
  728.     sRange  = editdoc.selection.createRange();
  729.     var sHtml   = sRange.htmlText;
  730.     // check for control ranges
  731.     if (sRange.length) { return alert("Unable to insert HTML.  Try highlighting content instead of selecting it."); }
  732.     // insert HTML
  733.     var oldHandler = window.onerror;
  734.     window.onerror = function() { alert("Unable to insert HTML for current selection."); return true; } // partial table selections cause errors
  735.     if (sHtml.length) {                                 // if content selected
  736.       if (str2) { sRange.pasteHTML(str1 +sHtml+ str2) } // surround
  737.       else      { sRange.pasteHTML(str1); }             // overwrite
  738.     } else {                                            // if insertion point only
  739.       if (reqSel) { return alert("Unable to insert HTML.  You must select something first."); }
  740.       sRange.pasteHTML(str1 + str2);                    // insert strings
  741.     }
  742.     window.onerror = oldHandler;
  743.   }
  744.   // insertHTML for plaintext textarea
  745.   else if (tagname == 'textarea') {
  746.     editor_obj.focus();
  747.     sRange  = document.selection.createRange();
  748.     var sText   = sRange.text;
  749.     // insert HTML
  750.     if (sText.length) {                                 // if content selected
  751.       if (str2) { sRange.text = str1 +sText+ str2; }  // surround
  752.       else      { sRange.text = str1; }               // overwrite
  753.     } else {                                            // if insertion point only
  754.       if (reqSel) { return alert("Unable to insert HTML.  You must select something first."); }
  755.       sRange.text = str1 + str2;                        // insert strings
  756.     }
  757.   }
  758.   else { alert("Unable to insert HTML.  Unknown object tag type '" +tagname+ "'."); }
  759.   // move to end of new content
  760.   sRange.collapse(false); // move to end of range
  761.   sRange.select();        // re-select
  762. }
  763. /* ---------------------------------------------------------------------- *
  764.   Function    : editor_getHTML
  765.   Description : return HTML contents of editor (in either wywisyg or html mode)
  766.   Usage       : var myHTML = editor_getHTML('objname');
  767. * ---------------------------------------------------------------------- */
  768. function editor_getHTML(objname) {
  769.   var editor_obj = document.all["_" +objname + "_editor"];
  770.   var isTextarea = (editor_obj.tagName.toLowerCase() == 'textarea');
  771.   if (isTextarea) { return editor_obj.value; }
  772.   else            { return editor_obj.contentWindow.document.body.innerHTML; }
  773. }
  774. /* ---------------------------------------------------------------------- *
  775.   Function    : editor_setHTML
  776.   Description : set HTML contents of editor (in either wywisyg or html mode)
  777.   Usage       : editor_setHTML('objname',"<b>html</b> <u>here</u>");
  778. * ---------------------------------------------------------------------- */
  779. function editor_setHTML(objname, html) {
  780.   var editor_obj = document.all["_" +objname + "_editor"];
  781.   var isTextarea = (editor_obj.tagName.toLowerCase() == 'textarea');
  782.   if (isTextarea) { editor_obj.value = html; }
  783.   else            { editor_obj.contentWindow.document.body.innerHTML = html; }
  784. }
  785. /* ---------------------------------------------------------------------- *
  786.   Function    : editor_appendHTML
  787.   Description : append HTML contents to editor (in either wywisyg or html mode)
  788.   Usage       : editor_appendHTML('objname',"<b>html</b> <u>here</u>");
  789. * ---------------------------------------------------------------------- */
  790. function editor_appendHTML(objname, html) {
  791.   var editor_obj = document.all["_" +objname + "_editor"];
  792.   var isTextarea = (editor_obj.tagName.toLowerCase() == 'textarea');
  793.   if (isTextarea) { editor_obj.value += html; }
  794.   else            { editor_obj.contentWindow.document.body.innerHTML += html; }
  795. }
  796. /* ---------------------------------------------------------------- */
  797. function _isMouseOver(obj,event) {       // determine if mouse is over object
  798.   var mouseX    = event.clientX;
  799.   var mouseY    = event.clientY;
  800.   var objTop    = obj.offsetTop;
  801.   var objBottom = obj.offsetTop + obj.offsetHeight;
  802.   var objLeft   = obj.offsetLeft;
  803.   var objRight  = obj.offsetLeft + obj.offsetWidth;
  804.   if (mouseX >= objLeft && mouseX <= objRight &&
  805.       mouseY >= objTop  && mouseY <= objBottom) { return true; }
  806.   return false;
  807. }
  808. /* ---------------------------------------------------------------- */
  809. function editor_cMenu_generate(editorWin,objname) {
  810.   var parentWin = window;
  811.   editorWin.event.returnValue = false;  // cancel default context menu
  812.   // define content menu options
  813.   var cMenuOptions = [ // menu name, shortcut displayed, javascript code
  814.     ['Cut', 'Ctrl-X', function() {}],
  815.     ['Copy', 'Ctrl-C', function() {}],
  816.     ['Paste', 'Ctrl-C', function() {}],
  817.     ['Delete', 'DEL', function() {}],
  818.     ['---', null, null],
  819.     ['Select All', 'Ctrl-A', function() {}],
  820.     ['Clear All', '', function() {}],
  821.     ['---', null, null],
  822.     ['About this editor...', '', function() {
  823.       alert("about this editor");
  824.     }]];
  825.     editor_cMenu.options = cMenuOptions; // save options
  826.   // generate context menu
  827.   var cMenuHeader = ''
  828.     + '<div id="_'+objname+'_cMenu" onblur="editor_cMenu(this);" oncontextmenu="return false;" onselectstart="return false"'
  829.     + '  style="position: absolute; visibility: hidden; cursor: default; width: 167px; background-color: threedface;'
  830.     + '         border: solid 1px; border-color: threedlightshadow threeddarkshadow threeddarkshadow threedlightshadow;">'
  831.     + '<table border=0 cellspacing=0 cellpadding=0 width="100%" style="width: 167px; background-color: threedface; border: solid 1px; border-color: threedhighlight threedshadow threedshadow threedhighlight;">'
  832.     + ' <tr><td colspan=2 height=1></td></tr>';
  833.   var cMenuList = '';
  834.   var cMenuFooter = ''
  835.     + ' <tr><td colspan=2 height=1></td></tr>'
  836.     + '</table></div>';
  837.   for (var menuIdx in editor_cMenu.options) {
  838.     var menuName = editor_cMenu.options[menuIdx][0];
  839.     var menuKey  = editor_cMenu.options[menuIdx][1];
  840.     var menuCode = editor_cMenu.options[menuIdx][2];
  841.     // separator
  842.     if (menuName == "---" || menuName == "separator") {
  843.       cMenuList += ' <tr><td colspan=2 class="cMenuDivOuter"><div class="cMenuDivInner"></div></td></tr>';
  844.     }
  845.     // menu option
  846.     else {
  847.       cMenuList += '<tr class="cMenu" onMouseOver="editor_cMenu(this)" onMouseOut="editor_cMenu(this)" onClick="editor_cMenu(this, '' +menuIdx+ '','' +objname+ '')">';
  848.       if (menuKey) { cMenuList += ' <td align=left class="cMenu">' +menuName+ '</td><td align=right class="cMenu">' +menuKey+ '</td>'; }
  849.       else         { cMenuList += ' <td colspan=2 class="cMenu">' +menuName+ '</td>'; }
  850.       cMenuList += '</tr>';
  851.     }
  852.   }
  853.   var cMenuHTML = cMenuHeader + cMenuList + cMenuFooter;
  854.   document.all['_'+objname+'_cMenu'].outerHTML = cMenuHTML;
  855.   editor_cMenu_setPosition(parentWin, editorWin, objname);
  856.   parentWin['_'+objname+'_cMenu'].style.visibility = 'visible';
  857.   parentWin['_'+objname+'_cMenu'].focus();
  858. }
  859. /* ---------------------------------------------------------------- */
  860. function editor_cMenu_setPosition(parentWin, editorWin, objname) {      // set object position that won't overlap window edge
  861.   var event    = editorWin.event;
  862.   var cMenuObj = parentWin['_'+objname+'_cMenu'];
  863.   var mouseX   = event.clientX + parentWin.document.all['_'+objname+'_editor'].offsetLeft;
  864.   var mouseY   = event.clientY + parentWin.document.all['_'+objname+'_editor'].offsetTop;
  865.   var cMenuH   = cMenuObj.offsetHeight;
  866.   var cMenuW   = cMenuObj.offsetWidth;
  867.   var pageH    = document.body.clientHeight + document.body.scrollTop;
  868.   var pageW    = document.body.clientWidth + document.body.scrollLeft;
  869.   // set horzontal position
  870.   if (mouseX + 5 + cMenuW > pageW) { var left = mouseX - cMenuW - 5; } // too far right
  871.   else                            { var left = mouseX + 5; }
  872.   // set vertical position
  873.   if (mouseY + 5 + cMenuH > pageH) { var top = mouseY - cMenuH + 5; } // too far down
  874.   else                            { var top = mouseY + 5; }
  875.   cMenuObj.style.top = top;
  876.   cMenuObj.style.left = left;
  877. }
  878. /* ---------------------------------------------------------------- */
  879. function editor_cMenu(obj,menuIdx,objname) {
  880.   var action = event.type;
  881.   if      (action == "mouseover" && !obj.disabled && obj.tagName.toLowerCase() == 'tr') {
  882.     obj.className = 'cMenuOver';
  883.     for (var i=0; i < obj.cells.length; i++) { obj.cells[i].className = 'cMenuOver'; }
  884.   }
  885.   else if (action == "mouseout" && !obj.disabled && obj.tagName.toLowerCase() == 'tr')  {
  886.     obj.className = 'cMenu';
  887.     for (var i=0; i < obj.cells.length; i++) { obj.cells[i].className = 'cMenu'; }
  888.   }
  889.   else if (action == "click" && !obj.disabled) {
  890.     document.all['_'+objname+'_cMenu'].style.visibility = "hidden";
  891.     var menucode = editor_cMenu.options[menuIdx][2];
  892.     menucode();
  893.   }
  894.   else if (action == "blur") {
  895.     if (!_isMouseOver(obj,event)) { obj.style.visibility = 'hidden'; }
  896.     else {
  897.       if (obj.style.visibility != "hidden") { obj.focus(); }
  898.     }
  899.   }
  900.   else { alert("editor_cMenu, unknown action: " + action); }
  901. }
  902. /* ---------------------------------------------------------------------- */