var fDesc=new Array();
fDesc[0] = "Todoist for Gmail is a Google Chrome extension that allows you to manage your to-do lists right from your Gmail inbox. You can set up and receive push notifications, e-mail or SMS reminders based on your physical location or the date and time; get more organized using task notes, enhanced labels, and powerful filters; upload files, sound recordings, and photos to your tasks from your computer, Dropbox, or Google Drive, and more.";
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 = '';
}
}