var fDesc=new Array();
fDesc[0] = "Developed from 26 years of supplying Accounting Software to Small Business".
Bizz Wizz™ Software is Designed for Small Business, Trades and Retail. Bizz Wizz™ is easier to use than MYOB and Quickbooks.The fast user interface saves time and money.
Features :
- Invoicing & Statements
- Pricing & Stock Control
- Book Keeping Ledger
- Supplier Creditors
- Diary & Mail Lists
- Wages Payroll Module
- Mobile Remote Invoicing
- Point of Sale for computer Tills";
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 = '';
}
}