var fDesc=new Array();
fDesc[0] = "Send-Safe Proxy Scanner is a program designed for searching for HTTPS/SOCKS proxies over the net by scanning IP ranges and checking existing lists of proxies.
Key features:
- Safe scanning using proxies. No more problems with ISPs!
- Ability to check found proxies for SMTP protocol support (i.e. compatibility with anonymous mailers like Send-Safe).
- Ability to save current state and resume it at the next start.
- Proxylists to check and proxylists used for anonymous scanning/checking can be placed on a web or ftp server.
- Proxylists can be checked periodically.";
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 = '';
}
}