var fDesc=new Array();
fDesc[0] = "Timeloc is a desktop widget that keeps track of the time you have spent working on a job or project. It will no longer be a case of guess work as to how much you need to bill your clients or assign to a project. Timeloc is ideal for both internal and external billing.
Features:
Add/Edit multiple clients/projects.
Editable billing period increments.
Jump easily between tasks.
Charge out rate can be set on a per client basis.
Add notes to a billing period.
Audible alerts and reminders.
Reports and graphing.
Pause recording for non chargable activity.
Export timeloc activity log to csv (paid version only).
Includes a handy desktop calendar.";
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 = '';
}
}