var fDesc=new Array(); fDesc[0] = "TBS Attendance Tracking tracks the time that employees take off work and can also track the time that employees work.

Tracks the time that employees are off work. Reports summarize the info by the day of week, so that you can see which employees usually miss time on Mondays or Fridays. Will keep track of time Employees work, with option to calculate accrued hours for various attendance codes."; 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 = ''; } }