var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "functional finance manager today. This program was developed to manage both business and personal finances. Using it you can control many accounts, credit cards, forthcoming payments, and so on.";
fDesc[4] = "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[5] = "full fledged personal Document manager. Avignon Concept has off-course a To-do manager, which, combined with the Avignon Concept Calendar and Planning functions, gives you the complete system you always wanted to have. On top of these functions, Avignon Concept also delivers a Finance manager enabling you to run your all your worldwide bank accounts.";
fDesc[6] = "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[7] = "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[8] = "program will let you record all the income sources for your balance, different types of expenses deducted and the total balance.";
fDesc[9] = "where your money flows. This allows you easily to increase your savings.";
fDesc[10] = "Budgeting System allowing you to decide where your money will be spent and allocating funds accordingly.";
fDesc[12] = "payment, investment management, budget tracking, scheduled transactions, check printing, detailed graphs, reports, and much more. Moneydance's easy-to-use interface sets it apart from other financial software.";
fDesc[15] = "checkbook, keep track of your credit cards, manage your bills and recurring deposits, generate account summaries, and much more.";
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 = '...';
}
}