var fDesc=new Array();
fDesc[0] = "Kerio Connect is the award-winning, leading alternative to Microsoft Exchange for businesses and organizations that prefer a simple approach to IT. Kerio Connect mail server brings business-class email, shared calendars, and contact management to most email clients, web browsers and mobile devices at a fraction of the cost and IT overhead.";
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 = '';
}
}