var fDesc=new Array(); fDesc[0] = "WinPad is a full featured light weight RTF (Rich Text Format) and text file editor. It's an ideal replacement for Windows Notepad and also useful for programmers for its handy features. Some features of WinPad: *WinPad is FREEWARE! *WinPad comes with more than basic text formatting features like: *Centre, Right, Left align text *Underline, Strikethrough text *Set text as subscript, superscript *Change text colour *Change text to lower or uppercase *Insert images in the document *WinPad doesn't have the 64k limit of Windows Notepad *Ability to email the file *Few features which will be useful for programmers!"; 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 = ''; } }