var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to search the contents of one or more zip files. The user simply adds zip files or an entire folder. There are options to search and list all files contained in the zip file/s or to search according to one of the following search filter options: for filenames containing a user defined text string or for files for containing a user defined text string. There is a check box to use match case for the search. Search results, displayed in the lower pane, can be saved as a text file or copied to the clipboard for pasting."; 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 = ''; } }