var fDesc=new Array();
fDesc[0] = "Estimate Master is a general purpose estimating tool for any business. Adaptable to different types of businesses by virtue of an open database, customizable estimate fields and customizable cost basis categories.
- Easily create estimates that fit your business
- Improve your productivity
- Organize your estimate data
- Leverage your QuickBooks investment and expertise
- Highlights:Quick and easy estimate creation from your database of parts, materials and labor items.";
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 = '';
}
}