var fDesc=new Array();
fDesc[0] = "Bid-n-Invoice Painter is an Estimate and Invoice program for any professional Painter
The Fastest an Easiest way to create Painting Estimates and Invoices.
- Email All Invoice types as a PDF!
-No expensive forms to buy just use blank computer paper.
-Your Invoices will have that clean professional look.
-Add your Company name and address.
-Add your Company phone and fax.
-Add your Company licenses information.
-You can even add your company logo.";
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 = '';
}
}