var fDesc=new Array(); fDesc[0] = "AkelPad is an open source editor for plain text. It supports single window (SDI), multi-window (MDI) and pseudo multi-window modes (PMDI).
Main features:
Support of Unicode codepages (UTF-8, UTF-16LE, UTF-16BE, UTF-32LE, UTF-32BE);
- Support of any codepage installed in the system.
- Support of DOS/Windows, Unix and Mac newline formats.
- Preview file open.
- Correct pseudographics displaying.
- Column text selection.
- Multi-level undo.
- Fast search/replace text strings."; 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 = ''; } }