var fDesc=new Array(); fDesc[0] = "COM Inspector is a great tool for anyone who needs to connect to a modem or other serial device, but doesn't know what the current settings of the device may be. An example would be needing to connect a data logger to a modem, but not knowing the modem baud rate, parity, and stop bit settings so the logger can be set appropriately.

Trying to do this assessment using a terminal program (such as HyperTerminal) can be tedious and time consuming. COM Inspector completely automates this process, working through the testing of every possible configuration array until it finds the correct one."; 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 = ''; } }