var fDesc=new Array(); fDesc[0] = "NewtPad is a text editor which doesn't just copy, paste, undo, find, replace words, but also opens multiple files, checks as you type and gives an audible warning when you make a spelling mistake or highlights if you make an HTML mistake. All this can be solved by right clicking for a selection and spellings are corrected.

With this program you can also drag a file around using the right hand mouse button, navigate easily by showing a zoomed out map of your text file in a window to the side of NewtPad and highlighting the currently viewed area."; 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 = ''; } }