var fDesc=new Array();
fDesc[0] = "ATR Timer helps you to track your projects and time spent with a single click .
ATR Timer runs in Windows system tray and tracks your projects with 1 click - you can start, pause or stop your project just by clicking on ATR Timer icon. It can allocate your time to a specific predefined project or give you an option to choose a client and a project yourself, along with project description.
ATR Timer works with ATR Personal and with ATR Professional.
Download free 30-day trial of Advanced Time Reports Timer today and start enjoying your work even more! Take the control of your time back!";
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 = '';
}
}