var fDesc=new Array();
fDesc[0] = "Named Pipe TCP Proxy - utility which provides access to named pipes on Windows (special files with names built using the following rule -\pipe\) via TCP/IP.
Utility has intuitive GUI and allows to create "tcp port" "named pipe" mappings. To access certain named pipe you need to create such a mapping and then connect to assigned tcp port using any terminal client program.
For example one may access named pipe locally by issuing the following command:
telnet 127.0.0.1
where TcpPort is the port assigned in the GUI for a given named pipe.";
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 = '';
}
}