var fDesc=new Array(); fDesc[0] = "Drive Inventory makes an Excel spreadsheet of all the files on your hard drive. The Excel file can have up to 1,048,576 rows in Excel 2007 or later. In Excel 2003 and earlier the limit is 65,536 rows. If these limits are exceeded then additional worksheets will be added so that all files are included. Get detailed information about each file or folder, change attributes, open it, copy it to the clipboard, or delete it. Folders will open in Windows Explorer and files will open in the default program for that file type. You can also view the file contents, search for files, rename files, or do a batch rename of all selected files."; 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 = ''; } }