var fDesc=new Array();
fDesc[0] = "Mailtraq provides full scale
mail routing and management, mailing lists, automated dialup handling,
user accounting, content barring, anti-relaying, anti-spam and
anti-virus facilities.
Mailtraq is extensible through a scripting
language and can collect and route mail from a single POP3 mailbox for
multiple users. Mailtraq also supports ETRN and ODMR for mail
collection. The Mailing List CRM feature can share incoming mail
amongst multiple users (for example, sales@yourcompany.com) and you can
host large discussion forums using e-mail based subscription handling.
Local Directory services (provided through LDAP) allow local users to
look up e-mail addresses hosted in Mailtraq.";
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 = '';
}
}