var fDesc=new Array(); fDesc[0] = "Allows any of the serial (RS232) ports on your PC to interface directly to a TCP/IP network. This makes it possible for any other computer on the same network to access the serial ports on the PC where TCP/Com is running through a TCP/IP socket connection. For example, you could connect a serial device (bar code reader, electronic balance or electronic measuring instrument) to a COM port on your PC, run TCP/Com and then connect to the device from any other PC on your network through a TCP/IP socket connection. This would allow you to use TCPWedge"; 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 = ''; } }