var fDesc=new Array();
fDesc[0] = "Spend more time growing your business and less time on paperwork.
InstaForm Invoices & Estimates Pro lets you estimate, bill, collect, report and much more – all from the easiest invoicing software available. No need to fuss with complex accounting programs. Invoices & Estimates Pro is the fast and easy way to create professional invoices that get noticed – and get paid.
More than 1,000 ready-made form designs, 500 professional collection letters and 12,000 business graphics are included.
Invoices & Estimates Pro is an indispensable resource for managing your small to medium-sized business. And it's guaranteed to make you more productive or your money back";
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 = '';
}
}