var fDesc=new Array(); fDesc[0] = "Features:
256 columns x 65536 rows x 32768 sheets
Unlimited open files
Supported operations: - * / ^ % &
327 worksheet functions (see below)
184 macro functions for custom functions and commands,array formulas
Undo, cut, copy, paste (all/formulas/values/formats/comments), fill (down/right/up/left/series), clear (all/formats/contents/comments)
Insert/delete cells, rows and columns
Hide/unhide rows and columns
Hide/show row and column headings
Find/replace text
Goto specified cell
Sort selected cells, rows, columns or whole sheet with multiple keys
Freeze panes
Sheet/column/row/cell formatting"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }