var fDesc=new Array(); fDesc[0] = "Do you fill out time cards by hand, or not at all? Touch Time Clock “The Time Clock Program” calculates payroll so you don’t have to. Employees “clock in” using a keyboard, barcode reader, or fingerprint reader. Keep track of time your employees spend on specific projects or clients. When an employee starts work they “clock in.” When they finish work they “clock out” and may specify what project or client they were working on. Quickly produce payroll reports and managerial reports such as cost analysis per employee, job, or client."; 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 = ''; } }