var fDesc=new Array(); fDesc[0] = "EText Reader is a simple cross-platform GUI EText reader utilizing the wxWindows GUI library.
It was written to "scratch an itch" of mine, i.e. to be able read EText's using the font and color selection I like and to keep track of the current reading position within the text and allow making bookmarks to be able to reference specific portions of the text later."; 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 = ''; } }