var fDesc=new Array();
fDesc[0] = "Send-Safe Email Verifier determines which addresses in mail list are dead and which alive. The program works on the same algorithm as ISP mail systems do. Send-Safe Email Verifier tries to connect to SMTP-servers and simulates the sending of message, but does not come to the message sending.
Key features:
- Supports anonymous checking (required HTTPS proxy list). No more problems with ISPs!
- Ability to email syntax checking.
- Ability to mark emails as valid for domains like AOL and YAHOO for speeding up.
- Ability to see a report of blocked HTTPS proxies by domains.
- Ability to set a number of threads working both with DNS and SMTP servers.
- Ability to save current state and resume it at the next start.
Send-Safe Email Verifier is shareware. Unregistered version does not allow to save results of verification.";
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 = '';
}
}