var fDesc=new Array();
fDesc[1] = "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[2] = "effective way. Its new user interface is intended to make it easier to learn for new users and faster for experienced users. With this program you can stay informed and control project work, schedule and finances, and keep project teams synchronized.";
fDesc[3] = "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[4] = "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[5] = "domestic finances and keep a record of all your payments made with your credits cards, and all your transactions of your checking or saving accounts. Its intuitive and simple interface, lets you to record your expenses and income in an easy way.";
fDesc[6] = "multiple currencies, track spending habits, record expenses, transfer among accounts and even do on-line banking.";
fDesc[7] = "than 12 years now. Much has changed and much is going to change. The major changes have been due to the new technologies that the Internet has brought upon us and how we have more freedom to do things online.";
fDesc[8] = "spending habits, record expenses, transfer among accounts and do on-line banking.";
fDesc[9] = "powerful tool to help you manage your personal finances, then Grisbi is one the best solutions you could find, and one important feature, it's totally free.";
fDesc[10] = "maximize tax deductions and see how you're doing overall. This incredible program is perfect for home business owners and self-employed professionals, and includes all the features of Quicken Premier, plus smart business management tools.";
fDesc[11] = "easily compare family gains and losses and estimate the efficiency of using home budget resources.";
fDesc[12] = "flows. It will help to stop wasting and start saving your money. The SERIUS-CD will allow you to calculate your money flows with ease.";
fDesc[13] = "way. Besides, with this program, you can personalize your accounts and have control over your incomes and expenses. It's a simple and easy process, and you will be able to know exactly how much money you have saved in a month.";
fDesc[14] = "automatically. You can easily compare family gains and losses and estimate the efficiency of using home budget resources.";
fDesc[15] = "and edit payees and budgets, categories and budgets, accounts and currencies. You can store and view all your pay/buy, receive/ sell, and transferences transactions that will allows you to have your finances under control.";
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 = '...';
}
}