var fDesc=new Array();
fDesc[0] = "Free, unrestricted Virtual Serial Port driver for any TCP/IP devices. Compatible with Windows 2000, XP (Win 98, NT), Windows Vista & even 64 bit Windows 7NEW
Runs as a standalone application, or as a NT service suitable for servers NEW
Option to start at Windows startup and minimize to System Tray .Single-port (free) and multi-port (commercial) version
Supports RFC 2217, allowing to change remote serial port parameters (such as speed, parity, stop bits) over TCP using NVT";
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 = '';
}
}