var fDesc=new Array();
fDesc[0] = "BrightPay 2011/12 is a fully HMRC accredited payroll software package and is available for the remainder of the 2011/12 tax year at no cost, including support. There are 6 easy steps to processing Payroll:
- Step 1: New Employees
- Step 2: Processing Payroll
- Step 3: Payroll Summary (prior to finalisation)
- Step 4: Finalise Payslips (Process the payroll)
- Step 5: Print Payslips
- Step 6: Analysis (Reports).";
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 = '';
}
}