var fDesc=new Array();
fDesc[0] = "SLMail is SMTP and POP3 email server software for Microsoft™ Windows NT and 2000.
Features:
-Supports an unlimited number of users
-Support up to 1,023 secondary domains
-Set mailbox size limits globally, by domain or individual user
-Create mass email campaign with the list server
-Administer SLMail remotely from any web browser
-Set Auto Responders for absent employees
SLMail is the corner stone to developing an effective email solution with time-tested industry proven technology. SLMail is a reliable, scalable and secure email server solution for any business. As your needs change and your company grows, SLMail can grow along with you.";
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 = '';
}
}