var fDesc=new Array();
fDesc[0] = "EasyWare Human resource manager is a powerful software application that enables companies and organisations of all sizes to easily manage their payroll systems. There are three versions of the software:
- HRM Lite is completely standalone. It is easy to install, but slower and runs from just the computer on which it is loaded. Has no staff web interface.
- HRM Enterprise is faster, runs on the client's network or the Internet and accessible by several computers. Allows user customisation. Includes a web interface for staff to view and amend details, book leave and reminders etc
- HRM Managed is similar as Enterprise, but is run on the developers network and is accessible by clients anywhere in the world. It does not allow user customisation.";
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 = '';
}
}