var fDesc=new Array();
fDesc[0] = "Absolute Payroll is aimed at accountancy practices and employers providing a payroll bureau service. Easy to use, it allows you to complete multiple payrolls very quickly and accurately.
Main features:
- Net to gross
- Tax code updates
- Make changes to parameters and update all companies instantly
- Import facility for entry of hours, variable salary, and more.
- Security levels set by the user
- Re-run reports and payslips from previous periods
- E-filing for both in year and year end returns, P45 and P46 to HMRC
- Export all relevant data to P11D for further processing and filing";
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 = '';
}
}