var fDesc=new Array();
fDesc[0] = "E-mail Investigator Lite is a free, basic, version of E-mail investigator. It only has the ability to investigate one E-mail address at a time, and cannot produce detailed reports. This version is ideal for someone who needs to quickly ascertain the validity of an E-mail address.
Features: Fast, Simple, Automatically retrieves DNS server.";
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 = '';
}
}