var fDesc=new Array(); fDesc[0] = "The PCI Explorer is 32-bit C Windows application developed in Visual Studio 2003 with MFC. The application enables you to graphically view all the PCI devices and the buses they reside on accordingly to the actual hierarchy of the various devices on the buses. The PCI Explorer application also enables you to easily edit memory, I/O registers and Configuration Space Registers assigned to any PCI device in your system."; 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 = ''; } }