var fDesc=new Array();
fDesc[0] = "Use the OnTime Stopwatch to search for OnTime items to track work time against. Filters help you find just what you're looking for; filter by project, item types, user, whatever you like.
Submit worklogs using Stopwatch and finally have a true measure of the time spent on any given item as opposed to a random estimation.
Main features:
-Tracks time spent working on OnTime items.
-Search through the OnTime database for items to track using filters.
-User configurable automatic time rounding options.
-As many independent timers as you need!
-Single-task and Multi-task modes.
-Manual override.
-Submit worklogs directly to the OnTime database.
-"Quick Search" allows you to find item by ID instantly.";
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 = '';
}
}