var fDesc=new Array();
fDesc[0] = "MailScan for SMTP Server is the advanced Real-time AntiVirus and AntiSpam solution for Mail Servers that work on platforms like Windows, Unix, Linux, Novell and Solaris.
MailScan is installed on Windows machine to act as a Security Gateway between your Mail Server and the Internet.
Web Based Administration
MailScan Administration Console can be accessed using a browser, thus enabling Remote Administration of the application.
Real-Time Virus Scanning at the Mail Gateway
Scans emails for all types of Virus and other Malware in Real-Time including all inbound and outbound Mail Traffic.
Attachment Filtering
Extensive options to block certain attachments like EXE, COM, CHM or BAT from being sent or received.";
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 = '';
}
}