var fDesc=new Array();
fDesc[0] = "ProxyCap enables you to redirect your computer's network connections through proxy servers. You can tell ProxyCap which applications will connect to the Internet through a proxy and under what circumstances. This is done through a user friendly interface, without the need to reconfigure any of your Internet clients. ProxyCap has native support for the SSH protocol, allowing you to specify a SSH server as the proxy server.
Main features:
- Support for SOCKS and HTTPS proxy servers
- Built-in support for SSH tunneling
- Support for “pure” HTTP proxying
- Support for TCP- and UDP-based network protocols
- Proxy-side DNS support
- Flexible routing rules
- Support for proxy chains
- Support for 64-bit applications
- IPv6 support
- Support for Metro style apps on Windows 8
- Support for Single Sign-On (SSO)
- Built-in proxy checker
- Centralized management support";
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 = '';
}
}