var fDesc=new Array();
fDesc[0] = "The server can operate in two modes:
-Accept incoming connections from the client.
-Periodically try to establish a connection to the remote client.
At the top of the window displays information about the current mode and status of the server. If your computer has a static external IP address, the server is configured to operate in a mode to receive incoming connections.";
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 = '';
}
}