var fDesc=new Array(); fDesc[0] = "This application creates a customizable list of files within a folder or directory. AVD FileList's standard interface includes a basic file-tree navigator for easy file location and a large tabular window for viewing file details. A series of radio buttons and tick boxes lets you specify what information you want to include or exclude, like file path, name, extension, size, and date. It allows you to select files from the list to exclude in the generated listing or file. You can save the list in text, HTML, and CSV format. You also can print the lists from within the program. AVD FileList is a nice additional tool for all level of users who want a quick way of creating file catalogs."; 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 = ''; } }