var fDesc=new Array();
fDesc[0] = "Instant Invoice n Cashbook is a Billing software or Invoice software for the small business.
Main features:
- Very fast setup and learning time. Create, print and email your first invoice in 10 minutes or less.
- Create all your invoices, quotes or proposals and customer statements. with this quick and easy billing software product.
- Can be optionally linked with a cashbook module or used solely as an Invoicing software only.
- Caters to businesses that do not bill tax, businesses with 1 level of tax & businesses with 2 levels of tax (e.g. Canada).
- Customize the columns displayed in invoices to cater to different business types.
- Keep track of outstanding invoices and customer payments. Send customer statement of accounts.
- Step by step wizard to help you get setup in the fastest possible time.";
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 = '';
}
}