var fDesc=new Array();
fDesc[0] = "MDaemon® Messaging Server, mail server software, supports IMAP, SMTP, and POP3 protocols and delivers solid performance from its feature-rich and user-friendly design.
A trusted alternative to Microsoft Exchange, the MDaemon Messaging Server provides outstanding groupware features, integration with Microsoft Outlook (using Outlook Connector for MDaemon) and a multi-language webmail client for email access anywhere.";
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 = '';
}
}