var fDesc=new Array(); fDesc[0] = "FileName Listing software for windows 7, 8, and 10, was devoloped to create a list of the files in a folder, or a folder and sub folders. This software can help to create a catalog of the files on your computer. The list can include the full path of the files, and the file list can be saved as a text file which can be printed, or can optionally be saved as a CSV file to be used in a spreadsheet. Other features include filtering the list by name, extension, as well as the ability to open a selected file."; 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 = ''; } }