var fDesc=new Array();
fDesc[0] = "CherryTomato is a productivity tool that helps you focus and avoid procrastination. It relies on the Pomodoro Technique of concentrating for 25 minutes at a time. CherryTomato shows you a statistics of your application and website usage to remind you what you have been doing.
Though this doesn't sound like a big deal, it has been very helpful for me personally and the technique is gaining popularity rapidly around the world. This article gives a good feel for why the technique works so 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 = '';
}
}