var fDesc=new Array();
fDesc[0] = "ManagePLUS is a management information and reporting add-on for QuickBooks users. It expands the management information you can get from the QuickBooks records you already keep, giving you useful management reports with only a little extra effort.
ManagePLUS is beneficial in a wide range of businesses types: manufacturing, farming and ranching, medical offices, professional services businesses, trucking/transportation/delivery, and others--any business which uses the Classes feature of QuickBooks.";
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 = '';
}
}