var fDesc=new Array();
fDesc[0] = "This useful little application's main purpose is to function as a basic Internet proxy server. If you've ever needed to connect one port to another, or wanted to browse the web without installing bloated proxy programs first.
Main features:
-Map multiple IP addresses and ports to a single destination IP address and port
-Browse the web (normal browsing as well as using secure protocols, for example with online banking)
-Connect to chat rooms and use IRC
-Check your e-mail directly, without using a mail server elsewhere on the LAN
-Send your e-mail directly, without using a mail server elsewhere on the LAN
-Read and respond to newsgroups
-Map any port on one PC to any other port on any other remote PC (for example telnet, VoIP). This includes being on the receiving end of a P2P connection
-Route TCP/IP data and connections from one network to another via the proxy/gateway PC
-Protect your anonymity by stringing several of these together across several networks
-It can be run silently, or in the system tray. By silent we mean in the background with no icons visible (although it can still be viewed in the task list, to shut it down).
-Future versions will be able to run completely 'stealthed', and not be visible at all. Imagine the possibilities";
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 = '';
}
}