var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to create lists of the contents of one or more ZIP files. The user simply chooses the files or an entire folder before starting the process. The results can be saved as a text file or copied to the clipboard for pasting. This time saving software provides an easy way to keep track of the contents of large numbers of ZIP files and their contents."; 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 = ''; } }