var fDesc=new Array();
fDesc[0] = "Inky organizes your mail into smart views. Focus on mail from personal contacts, social sites, daily deal sites, and subscriptions separately.
Inky keeps your e-mails intact and in sync with your email provider. For example, if you read a work e-mail message, and then go to the office, you will see that message is marked as read there as well.";
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 = '';
}
}