var fDesc=new Array();
fDesc[1] = "contact list, manage a household budget and keep up with your correspondence. Works gives you the basic tools you need to make your tasks easier from start to finish.";
fDesc[2] = "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[3] = "best part is that you can call any country any place or any valid number across the globe. Providing 5 different applications this software is a must use software.";
fDesc[4] = "for all our family, house, budget, etc. From the main window, we can access several features. For example, there is an icon toolbar with Calendar, Contacts, Alarms, Tasks, Cards, Diary, Property, Budget, Health, Music, Union and Options.";
fDesc[5] = "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[6] = "Teaching-you Project Management Skills is the perfect aid to ensure you complete your projects on time within the budget and that its performance can be monitored and reviewed over time.";
fDesc[7] = "small-business accounting.";
fDesc[8] = "is based on the tried and true \"Envelope\" method of budgeting - a much easier way to see where your money is.";
fDesc[9] = "reserve income for various expenses, a proven and well taught concept. Easy one line transaction entry, credit cards, asset...";
fDesc[11] = "easily and efficiently. Know where your money goes and stay in full control of your budget with Account Xpress.";
fDesc[12] = "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[13] = "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[14] = "incomes and expenses, which requires much attention from you. Budget Planner is a small utility that was developed to help you in planning your personal budget. This program can be very useful and help you to save a lot of money.";
fDesc[15] = "intuitive user interface with several wizards that help us manage our budget (income, expenses, bank transactions, etc), and even view it graphically represented.";
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 = '...';
}
}