var fDesc=new Array(); fDesc[0] = "Origionally, ScanDir was developed to print a directory listing containing all picture files on a CD. And that is about all that ScanDir version 0.1 could do. Print a directorylist of Image files. Before printing the directorylist, ScanDir builds up an internal list of all items (filenames) that match certain selection criteria. With the next versions, new and more advanced selections were possible (e.g. the use of Masks and/or multiple Strings and/or selections based upon file size and/or file date). Operations on the internal list of selected items were added. With ScanDir you can Delete, Copy, Move, Rename, Join, Split and change the Attibutes of selected files. The selected items list can be printed, saved as an ASCII text file or as a .CSV file (which can be imported by a spreadsheet program."; 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 = ''; } }