var fDesc=new Array();
fDesc[1] = "efficiently and effectively. The suite includes Microsoft Office Access 2007, Accounting Express 2008, Microsoft Office Excel 2007, Microsoft Office Outlook 2007 with Business Contact Manager, Microsoft Office PowerPoint 2007, Microsoft Office Publisher 2007 and Microsoft Office Word 2007.";
fDesc[2] = "create professional-looking reports by adding dynamic graphics and animated charts. Besides, you can choose different formats for your report such as a bar chart, pie chart or cross-tab summary tables.";
fDesc[3] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
fDesc[4] = "overview that helps you keep track of your expenses. Put savings targets and then perform a monthly analysis of your finances to see how much you're really saving.";
fDesc[5] = "as filling in familiar checks, invoices, and forms onscreen. Get all the features of QuickBooks: Basic, like easily pay bills, print checks, track expenses and much more. Customize 100+ pre-designed forms to create a unique look. Exchange data with Microsoft Excel and more than 325 other software applications. Track employee time and job costs. Create reports comparing estimated costs to actuals.";
fDesc[6] = "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[7] = "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[8] = "financial tasks, to organize, and grow their businesses on the Internet. With its familiar Microsoft Office 2007 interface, this program is easy to learn, so you can be productive immediately.";
fDesc[9] = "track your bank accounts, stocks, income and expenses. Are you going to buy a vehicle or a new house? GnuCash will help you plan the investment and track loan payments. With GnuCash you can also keep track of your checkbook.";
fDesc[10] = "enterprise. You will be able to build your Accounting Plan, defining the name of the accounts you will be using, its type, tax charge and initial balance. You can register your bank account's transactions, register your sales, print out or email invoices and more.";
fDesc[11] = "), Sales Tax Reports , Excise reports / Registers , consignment sales , customized billing formats and other documents.";
fDesc[12] = "several different currencies, and multiple locations. You can control Inventory, Order Processing, Invoices, Documents, Letters, Sales Tax Reports, VAT Reports, Service Tax, TDS, FBT and reports sent by E-Mail or SMS.";
fDesc[13] = "you record your income, expenses, bank loans and other cash items. The program is quite simple and can be used by all people, as it doesn't require previous accounting knowledge.";
fDesc[14] = "accounting needs. Whether you sell products or services, Simply Accounting has all you need to run your business. It automates everything from making purchases to making sales and everything in between. It's even flexible enough to meet the most demanding payroll requirements. With Simply Accounting, all the information you need to make important business decisions is at your fingertips in easy-to-read reports and graphs. Simply Accounting is your key to growth and profits.";
fDesc[15] = "sheet forms that can be created and customized, so that you will be able to enter the details of daily transactions according to your business needs, in a fast and easy manner.";
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 = '...';
}
}