var fDesc=new Array();
fDesc[0] = "Simple Com Tools TCP Test Tool is a TCP testing application that provides the ability to both initiate and capture TCP packets from any PC to or from any PC, server, or IP device - providing a complete solution for debugging TCP session connectivity issues.
It provides 2 tools in one:
- a TCP CLIENT (ender) for initiating outbound TCP traffic
0 a TCP SERVER (receiver) for receiving inbound TCP session requests";
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 = '';
}
}