var fDesc=new Array();
fDesc[0] = "TimeTool is a windows based program which tracks time spent on projects. TimeTool can be used to generate employee timesheets, customer invoices, or simply track time spent on given projects over a certain time period. TimeTool can be used by a single employee, a project group or an entire company.
TimeTool is a non-obstructive program which allows easy switching between projects. TimeTool is non-obstructive because projects can be initiated from the system tray without opening any windows over top of important work.
TimeTool's has 22 integrated reports. TimeTool also has 7 different XML database structures which can be used with crystal reports to generate almost any type of report, timesheet or invoice.";
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 = '';
}
}