var fDesc=new Array();
fDesc[0] = "ReMapPro is a COM port utlity designed to make serial data from your PC available on TCP/IP-based network.
The main utility, the Comport, is included in the ReMapPro package makes serial (RS232) data from your PC available on TCP/IP-based networks and makes TCP/IP data available on serial ports on your PC. This makes it possible for any other computer on the same network to send and receive serial data through a remote serial port on the PC where the Comport is running. You can connect to the remote serial port by connecting to a TCP/IP port. The Comport can also be used to pass the serial data across a corporate intranet or over the Internet. The Comport allows multiple sessions to run simultaneously but each with a different serial port.";
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 = '';
}
}