var fDesc=new Array(); fDesc[0] = "Lite Edit is a text editor with all the features useful for programming and no features or options you don't need. It has customizable syntax highlighting and comes with syntax highlighting already configured for many programming languages. Other major features include a configurable tools menu, bookmarks, multilevel undo/redo, customizable hotkeys, word wrap, and auto-indenting. Lite Edit also has many simple, innovative, and useful features such as displaying the clipboard in the status bar and a hotkey to restore the text previously on the clipboard."; 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 = ''; } }