var fDesc=new Array();
fDesc[0] = "RLA Invoice Manager allows users to create simple invoices and quotes. This program is a useful tool for small to medium businesses for their day to day activity.
Features:
- Creates professional looking invoices and quotes.
- Searches Quotes/Invoices based on three criteria.
- Manages customers and products.
- Flexible in terms of tax types and discounts.";
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 = '';
}
}