var fDesc=new Array();
fDesc[1] = "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[2] = "guide you on how to use your money in a wise way. It is a kind of accounting program which will allow you to register what you have to pay, when you have to pay it, what you have to get payed and when you have to get paid.";
fDesc[3] = "or even small-business accounting needs: Manage multiple accounts of different types. Create and manage budgets . Track performance of investments . Do your financial math in multiple currencies. Track your spending habits and see where the money goes. Multiple Account Types . Easy to Use. Real-time Understanding of Financial Conditions. Clearer \"Liability\" and \"Creditor's Rights\" Management. Organize and Manage Income and Expense by Category. Track Income and Expense Related to Specific Personnel. Secure Financial Information.";
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] = "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[6] = "personal finances, and want to register common transactions in order to do the accounts in a clear and easy way. This small application is designed to make those tasks easier, and is perfect to get a real idea of your personal finance.";
fDesc[7] = "your finances and stay on top of your expenses. It proves that managing finances is as simple as a mouse click. Visual Money supports multiple accounts that reflect real-world bank accounts, credit cards accounts, cash money and investments. You can put your income and expenses into different categories such as dinning out, clothes or automobile. Categorization makes possible to find out where your money are going. A large list of predefined categories is provided, however you can create custom categories and subcategories. Visual Money offers a variety of visual reports helping you to see your cash flow, expenses by categories and payees for any period of time. Visual Money supports import & export data into QIF (Quicken Interchange Format) files. This feature can be useful if you used other personal finance software before or downloaded your transaction history from your bank. Visual...";
fDesc[8] = "easily and efficiently. Know where your money goes and stay in full control of your budget with Account Xpress.";
fDesc[9] = "application and receive feedback almost immediately. When you start adding statements and transactions, the application will gather that information and draw reports for you.";
fDesc[10] = "program will let you record all the income sources for your balance, different types of expenses deducted and the total balance.";
fDesc[11] = "to track your earnings and spending over time. For Easy Money to be of any use to you, you have to make sure that you spend quite some time creating the categories that better suit your finances. Once you are done doing that, you can add new entries";
fDesc[12] = "transactions, categories and see graphs. Export to Excel. Personal Finance is a simple way to control your money.";
fDesc[13] = "personal finance-related tasks, such as balancing the checkbook, keeping track of credit cards, bill reminders, budgets and more. And you can easily generate reports to see where your money is going. Fortora Fresh Finance's streamlined user interface has an easy learning curve, and you will be up and running in a matter of minutes.";
fDesc[14] = "investment. Includes quizzes on Home Financing, Stocks, Bonds and Mutual Funds.";
fDesc[15] = "accounting jargon in an excellent environment. Illuminate your finances with insightful reports";
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 = '...';
}
}