var fDesc=new Array();
fDesc[1] = "needs. This version is completely free, but big companies may need to buy the more full-featured Office Accounting 2008 Professional which includes more complex tools, such as multi currency support, which is an essential feature for businesses selling to international customers.";
fDesc[2] = "accounting needs. This version is completely free, but big companies may need to buy the more full-featured Office Accounting 2007 Professional which includes more complex tools, such as multi currency support, which is an essential feature for businesses selling to international customers.";
fDesc[3] = "Ledger, Cashbook, Customers, Suppliers, Inventory, Report Writer, Point of Sale, Payroll and eCommerce.";
fDesc[4] = "Bank Reconciliation.";
fDesc[6] = "Free Accounting is an easy to use complete multi-user/multi-compa ny/multi-branch Windows-based accounting, inventory and customer management solution for your business.";
fDesc[7] = "Statement and Balance Sheet, the Trial Balance report, and General Ledger (detail) report.";
fDesc[8] = ", Inventory, Purchase Orders, Sales Orders and Quotes, Sales Analysis, and Bank Reconciliation.";
fDesc[9] = ", cash management and inventory management and more. It is flexible, user friendly, real-time, multi-user and Y2K compliant.";
fDesc[10] = ", association/club and private use.";
fDesc[11] = "payable, Powerful invoice/order entry system, Bank reconciliation, Automated cheque printing, Design your own reports, business forms and financial statements, Export reports directly to MSOffice and Corel WordPerfect Suite, And much more ...";
fDesc[13] = "priority and due date. Includes a stopwatch and time calculator.";
fDesc[14] = "have a small professional office you can save a lot of time and frustration by using General Ledger III";
fDesc[15] = "Income Statement and Balance Sheet, the Trial Balance Report, General Ledger Report, GL Totals Screen, GL History Screen, and the Bank Book. No monthly closing of the general ledger required Automatic reversing journal entries Optional subaccounts for branch, division, product group, etc. On-line drill-down to source document Complete year-end processing User-defined Financial Statements, Trial Balance, General Ledger Report and more... Delphi source code available royalty-free";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}