var fDesc=new Array(); fDesc[0] = "A program that performs batch HTTP or FTP downloads. I'll go to a new or favorite web site that has a lot of files I want to download but I don't have the time to manually download each file. And if I start five or six downloads going at once,something always happens to the machine or the internet connection before the downloads are finished. Jon's Downloader will download one file at a time, until the entire list of files has been downloaded."; 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 = ''; } }