var fDesc=new Array(); fDesc[0] = "Service Awards Tracker tracks service awards for employees in you company. The application can import data from many Human Resources Systems, and keep the data for as long as you wish. Service Awards Tracker tracks which employees get which awards, five year, ten year, etc. The application keeps track of which ward the employee selects along with any comments you wish to add. Service Awards Tracker also prints out lists and has an export option to export data to a word processor, for letters. The application can also keep track of them employee's supervisor and their mailing address. With Service Awards Tracker you can set up groups of employees; for example: You can have a group for Plat Operation, Financial Services, or any other group you can think of. Once the employees are grouped you can print out reports and export files for each group."; 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 = ''; } }