var fDesc=new Array();
fDesc[0] = "With the free payment request wizard, you can easily insert a PayPal payment button in e-mail versions of your QuickBooks invoices and estimates. Anyone with an email address in the growing list of countries and regions that accept PayPal can pay you instantly.
Features:
You integrate your QuickBooks invoice data into your emails.
You avoid extra invoicing paperwork.
Customers finish payments on PayPal’s secure website.
You track payments on PayPal’s site.
You don’t need a website of your own.";
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 = '';
}
}