var fDesc=new Array();
fDesc[0] = "Professional Accounting LE is generally for a company that has grown in employees, products or customers and has a need for more complex financial recording and reporting.
n less than 20 minutes, you can set up a single company. Our easy set up is simple. Just follow this 5 step process that is automatically triggered when you open the software.
- System Requirements
- Installation
- Registration
- Company Set-Up
- Easy Start Checklist";
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 = '';
}
}