var fDesc=new Array();
fDesc[0] = "Time-Minder automates the calculation of any award conditions, provides a selection of reporting options, prepares payroll import files and much, much more.
Main features:
- Manages unlimited numbers of employees there are no hidden costs if your business expands.
- Detailed employee records include shifts, classifications, departments and any additional payroll information. TMV5 fully automates your payroll.
- TMV's automatic shift selection means time calculations are correct even if employees swap shifts.";
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 = '';
}
}