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] = "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] = "protection. Highly awarded program with many many features such as Antivirus, Security Server, Stealth Mode, SmartDefense, DefenseNet, among others,";
fDesc[4] = "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[5] = "“rat race” where everybody who gets his university degree starts, and then all the adventure begins. By rolling the virtual dices, the player advances and falls into different situations.";
fDesc[6] = ", manage property information and a manage budgets. Financial information is kept in local currency. Allows the user to configure many of its characteristics to fit personal preferences. Information can be filtered and reports can be viewed on the screen or sent to the printer.";
fDesc[7] = "home or small business finances. It offers a great set of options to manage and provide valuable information about the money movements and the state of the finances for each defined account. Its GUI is friendly and easy to use. It works on Windows 2000/NT/XP/Vista and Linux platforms.";
fDesc[8] = "finally become a savvy spender and protect yourself from the danger of debt.";
fDesc[9] = "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[10] = "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[11] = "can import and export data from/to other financial programs as well as Quicken. The utility helps to create reports and analyze various transactions, which could be generated by the in-built report generator.";
fDesc[12] = "one personal financial tool that simply delivers; IngenMoney Pro V3.0, the solution you've been waiting for!";
fDesc[13] = "of families worldwide. This software tool will help you budget, track all your expenses and put you on the path to financial stability.";
fDesc[14] = "basics of investing and provides an understanding of terms used in the financial sector. The program features tutorials and quiz questions and is a guide for users that will help them to make their own financial decisions.";
fDesc[15] = "with easy-to-see spin controls. Instant visual feedback on all changes. Integrated tools to optimize expenditure and synchronize with budget.";
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 = '...';
}
}