var fDesc=new Array();
fDesc[0] = "MYtime makes it simple to accurately track the time you spend on tasks and projects and produce invoices from this information with minimum effort.
Features:
- Automated timesheet creation - minimises user effort;
- Extensive customisation;
- Easy data entry;
- No training required;
- Extensive on and offline help;
- Automated warnings for tasks near due dates;
- Adjust time recorded against a task whilst recording time.";
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 = '';
}
}