var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to find the location of one or more folders that contain or do not contain user-specified file or folder names. The user adds folder/s and selects the filter option before entering the text for the file or folder name. There are check boxes to allow case matching and/or to search subfolders. The results are displayed in a list and 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 = ''; } }