var fDesc=new Array();
fDesc[0] = "Advanced Virtual COM Port is the first professional serial communications utility, which combines network and local virtual COM port/virtual serial port functions into one.
It gives you the ability to:
Create Virtual COM Ports and connect them with a Virtual NULL-Modem Cable over a LAN or the Internet.
Share your real (physical) serial ports over the LAN and Internet.
Create a pairs of Local Virtual COM Ports connected with a Virtual NULL-Modem Cable.";
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 = '';
}
}