var fDesc=new Array();
fDesc[0] = "SMTP Finder allows you to find the SMTP Server for any e-mail address with just the click of a button, and best of all, it is 100% free and exceedingly small.
System Requirements
Minimum
486/66
8MB Ram
Windows 95
Visual Basic 6 Runtime files
Reccomended
Intel Pentium I 120Mhz
32MB Ram
Windows 98
Visual Basic 6 SP5 Runtime files
Additional Requirements:
Microsoft XML 6.0 (now only used as a failsafe as of 2.1.0)";
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 = '';
}
}