var fDesc=new Array(); fDesc[0] = "Hardware and Software Info is an application that shows hardware and software information of local and remote Windows machines. Users can have access to all the information they need very easily, by simply pressing the Show Info button. The information is displayed as a 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 = ''; } }