var fDesc=new Array();
fDesc[0] = "SimpleHR can help you with all your Human Resource requirements for a small to mid sized company. This would include:
- Salary History and Benefits
- Vacation and Leave Tracking
- Performance Reviews
- Reporting
- Reminders to keep track of Human Resource tasks
- Emergency and Dependent contacts
- Attendance
- Training
- Skills and education
- Health and Safety
- Document Library";
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 = '';
}
}