var fDesc=new Array();
fDesc[0] = "Fast , Friendly , Powerful Multi-user Accounting Software.
The single user version is being distributed for free (No time limits , No registration, No Advertising ).
Similar to QuickBooks , MYOB , Peachtree etc.
Includes the following modules:
- Accounts Receivable
- Sales Invoices\(Orders) (and Point of Sale) (Bar Coding)
- Accounts Payable
- Purchase Invoices\(Orders)
- Inventory
- Stock Adjustments
- General Journal
- Cash Payments
- Cash Receipts
- Bank Reconciliations
- Assets\Investments (Depreciation)
- Payroll";
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 = '';
}
}