var fDesc=new Array(); fDesc[0] = "Epsilon can dynamically syntax-highlight source code files written in many different languages, showing keywords in one color, functions in another, string constants in a third, and so forth. Epsilon can finish typing long identifier names for you. You can interactively rearrange the keyboard to suit your preferences, and save the layout so that
Epsilon uses it the next time. Epsilon can also emulate the Brief text editor’s commands, or use a CUA-style keyboard (like various Windows programs).
Includes support for Telnet, SSH, SCP, and various other protocols."; 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 = ''; } }