var fDesc=new Array();
fDesc[0] = "yaTimer is a neat, easy to use time tracking application. It is designed to manage all your tasks and color-code them in the order you define or arrange them in groups by client or project with timing information always visible.
The program can print a wide variety of timesheets you can use to keep track of your time or send to your clients.";
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 = '';
}
}