var fDesc=new Array();
fDesc[0] = "Umuse - the modern way to read email. It's a native desktop application that work's seamlessly with your Gmail or Office 365 accounts. Fast, clean and easy to use - it makes quickly scanning your messages a breeze.
It learns who - and what - is important to you, and puts those messages front and center where you won't miss a one. Online or off, now you can spend less time searching for messages and more time responding.";
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 = '';
}
}