var fDesc=new Array(); fDesc[0] = "Application Inventory is a utility that scans your system for installed programs and generates a configurable report listing file version information about the files that that were discovered. Optional follow-up scans can are then automatically initiated to cross-reference the file scan results with windows .lnk shortcuts and/or references in the windows registry. Icon indicators show the presence of .lnk and/or registry references. Details on file properties, shortcuts, and registry keys are available by highlighting a file and then using 'Properties' and 'References' dialogs. Include and exclude filters can be used to define the scan by path &/or string(s) found in file version information. The fields included in the results are configurable. For example, you can list (or not) File Version, File Description, Internal Name, Copyright, File Path, etc. Results can be copied to the clipboard, printed, or saved in a delimited file you specify. Application Inventory can also launch windows explorer on the path containing a file in the results list."; 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 = ''; } }