var fDesc=new Array(); fDesc[0] = "AlphaPad is a quick and easy notepad utility to help you save lists of text in alphabetical order.
Just click on the A-Z buttons to automatically load the text files into the editing window. All text is automatically saved whenever you click another button (and when you exit the program), so you don't have to worry about remembering to save as you continue to use the application.
Use it to quickly keep track of your list of books, DVD collection, or whatever other text you need to sort alphabetically."; 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 = ''; } }