var fDesc=new Array();
fDesc[0] = "CTR-Bridge allows up to five CTR programs and other compatible programs to simultaneously control your radio using your TCP/IP or Wi-Fi network.
CTR-Bridge creates a data bridge where each program connected to the bridge can send and receive data to the COM port. The programs are unaware that other programs are using the same 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 = '';
}
}