var fDesc=new Array();
fDesc[0] = "Simple to use, quick and efficient - use LAeMail to send text and HTML emails to an unlimited list of recipients.
Features:
- Sends both text and HTML mail
- Full email list processing including the removal of duplicates
- Validation during mailing with a full progress report showing successful sends and reasons for failures
- Operates with both anonymous and secure email servers
- Full control over the email body and subject line";
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 = '';
}
}