var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to create a list of their computer hardware. The software will list all the hardware on a system in the left panel and each device's properties and value in the right one. There are options to list the devices with or without their properties. Results can be saved as a text file or as an HTML table. This easy to use software can be useful for keeping records of devices installed on various systems."; 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 = ''; } }