var fDesc=new Array();
fDesc[0] = "TCP2COM is a tool to bridge a TCP socket to a Serial port.
The program itself runs as a service under Windows NT, which renders it completely independent of any maintenance, without the need to be logged onto the machine.
Accessing COM port device gives from a socket various applications :
- telnet access to your modem
- remote access to a defective Windows 2003 box.";
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 = '';
}
}