var fDesc=new Array(); fDesc[0] = "Tracks Employee, Subcontractor, Vendor, and Client Time. Prints out detailed reports for use in Payroll and Billing. Allows for hourly payroll, per job pay, and the combination of both. Allows for overtime at time and a half if desired and bill with or without tax, at an hourly rate, or a flat charge amount. Holds unlimited amount of data and prints detailed payroll and billing reports with an extremely easy to use graphical user interface."; 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 = ''; } }