var fDesc=new Array();
fDesc[0] = "VersaCheck Smart Invoice and Estimates create and print invoices, estimates, purchase orders and statements.
Other features:
Create a reusable master list of products and services
• Track Inventory quantities, costs and values
• Built-in online presentation of invoices and bills
• Convert estimates to invoices with a single mouse click
• Automatically add sales tax
• Easily search invoices and track customer payment history
• Exchange transaction files and contact records with
your financial and accounting software
• Includes extensive reports";
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 = '';
}
}