var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "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[4] = "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[5] = "and understand where your income goes. Expense Tracker can help you manage your expenses much more easily than the old pencil and paper method.";
fDesc[6] = "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[7] = "easily compare family gains and losses and estimate the efficiency of using home budget resources.";
fDesc[8] = "and income. Its quick and after using the software you will notice that it is really a breeze to enter new transactions and view reports. With Easy Cash Manager, you will learn how to administer your own personal finances.";
fDesc[9] = "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[10] = "expenditures, the program will allow you to keep track of your budget. You will then be able to better understand where did your money go, and plan where to save money.";
fDesc[11] = "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[12] = "have an accurate knowledge of your incomes, expenses, accounts and transactions, being able to reduce expenses and decide how you can improve your money management. A powerful home tool for your daily life which will make it much easier.";
fDesc[13] = "This program features a smart and friendly graphical user interface. We can enter our income and expenses on a monthly basis and view the balance. There are eleven specific categories for expenses that cover all aspects of our daily life.";
fDesc[14] = "This program is aimed for adults and for their families. You can calculate your budget for any period, and then keep an eye on your spendings. It can be expenses for food, clothes, entertainment, medical expenses, insurance, utilities, credit card, debts, vacations, car payments, education and so on.";
fDesc[15] = "you categories, make reports on chosen expenses types, export your financial management to MS Excel.";
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 = '...';
}
}