var fDesc=new Array();
fDesc[0] = "SpearMail is an industry standard robust e-mail server that helps set up a comprehensive e-mail solution similar to that deployed at large corporate firms at a fraction of the price. SpearMail also has a host of features, which enable organisations to set up a powerful and cost-effective mailing system.
The messaging system will ensure that: Every user has a separate and private e-mail address, users can send and receive e-mail right from their desktop without dialling out each time, and users can send mail within the organisation as well as to the external world.";
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 = '';
}
}