var fDesc=new Array(); fDesc[0] = "Designed to be simple to use yet powerful enough to get the job done. The data that can be stored in the database covers a large range of useful employee information. Along with their name and address you can also list such information as SSN, NI, SIN, date of birth, supervisor, job title, and many more crucial pieces of information. HRmgr also tracks information regarding Attendance, Achievements, Benefits, Reviews, Wages, INS and Department of Labor information, and Emergency Contacts. You can easily see how things can be setup by viewing the sample database that is supplied. The sample makes learning to use the program much faster. Besides listing information you can print reports for easy reference and to save hard copies in your files. That address information can be used to print out labels. Due to the large amount of personal and private information that will be stored this program was equipped with password protection. HRmgr also provides backup, restore, import, export, and database utilities. This program should work well for the human resources information storage and organization needs of any type of small to medium business. Unregistered version is limited to five employee records."; 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 = ''; } }