var fDesc=new Array(); fDesc[0] = "An employee management software program that tracks clock in & out time, stores employee and employer information, creates & edits work schedules and calculates employee paychecks with tax information taken into account. Year-to-date payroll information is also tracked for all employees.

Main features:

- Network capable; program can be installed on different machines and access a central database from the main computer.
- Main terminal : This is where the database resides, and has full functionality,
- Clock-IN Terminal : Remote terminal and functionality is limited to only employee clock-in or clock-out.
- Clock In & Out; Track employee Clock In & Out times
- Payroll; Generate & Track Employee Payrolls
- Taxes; Calculate Taxes (FICA & Income Tax)
- Employee Work Schedules; Create & Edit Work Schedules
- Costing; Track Labor Costs
- Year-to-Date payroll; Tracks Year-to-Date payroll information : Gross income, taxes"; 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 = ''; } }