var fDesc=new Array();
fDesc[0] = "Forbes Accounts is a powerful, yet simple to use final accounts production system for accountants. It integrates closely with other Forbes products such as Time Recording, Payroll, Company Secretarial and Tax.
Main Features :
- Final accounts for sole traders, partnerships and limited companies
- XBRL enabled from the outset (see below for more detail)
- A range of data entry options using data schedules and excel
- Fully drillable working papers, giving access directly to schedules
- Format based system - global changes made easily using simple formatter
- Adjustment journals automatically cascaded through the financial statements
- Pages and notes automatically inserted
- Import from bookkeeping packages and excel
- Unlimited clients
- Easy to use - produces statutory accounts in minutes";
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 = '';
}
}