var fDesc=new Array();
fDesc[0] = "actiTIME is a time tracking software with intuitive and friendly interfaces.
If you need a clear and simple way to register time expenses, analyze employee performance, prepare timesheets for billing your customers - actiTIME is a tool of choice.
With actiTIME you can:
- Register time expenses
- Generate progress, billing and overtime reports
- Export data for further use and analysis
For integration with other software actiTIME provides built-in reporting and data exporting functions, which together with open data format make integration a simple and convenient procedure.
actiTIME time tracking software can be installed under any operating system and works with MySQL and MS Access databases.";
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 = '';
}
}