var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to find files by their length. The user adds folder/s to be processed and can enter a string of characters that required files must contain. Files can be filtered following various criteria based on the length of the filename. The results are displayed in a list and can be saved as a text file or copied to the clipboard for pasting. There are buttons to open the folder containing a file in the list, to open a selected file or to clear results containing or not containing user specified text or characters."; 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 = ''; } }