var fDesc=new Array();
fDesc[0] = "Accounting is more than just numbers. It's watching over your company's financial health. To have accurate figures at your fingertips, to make well-informed decisions, a solution that pulls information together on a moment's notice is not a luxury, it's a requirement.
Sage Timberline Office is a comprehensive, construction-specific business management system:
- Link all of your accounting and operations functions together.
- Keep a close eye on everything, from payroll and job costing to vendors and cash management.
- Purchase only what you need now and add functionality down the road thanks to the modular design.";
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 = '';
}
}