var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "multiple currencies, track spending habits, record expenses, transfer among accounts and even do on-line banking.";
fDesc[4] = "spending habits, record expenses, transfer among accounts and do on-line banking.";
fDesc[5] = "bills using a credit card and pay at the last minute.";
fDesc[6] = "program is what small businesses need in order to create invoices, estimates, packing slips and statements. The software is capable of doing calculations, like adding taxes, total amounts and including discounts. This ensures that you will not make any math errors when doing invoices.";
fDesc[7] = ", bills, taxes, bank accounts, etc. Transactions history including all the steps and documents are stored and available to track any invoice, money movement, accounts movements, etc. The information is organized so it gets easy to access, better than in the classical accounting books.";
fDesc[8] = ", sending and tracking. This fabulous tool will work extremely well for those who are always aware for new customers and taking care of their old ones.";
fDesc[9] = "features that other computer organizers out there could even think about. With this program I am able to schedule my family’s appointments, send and receive e-mails, and I am even able to keep up with my monthly bills.";
fDesc[10] = "your Windows 98, ME, NT, 2000, or XP PC using your TWAIN or WIA compatible scanner.";
fDesc[11] = "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[12] = "whether or not they have been paid this month. BillVue is NOT an accounting program or a financial database. I...";
fDesc[14] = "been paid. The program provides an easy way to record medical visits and costs as they occur, and to calculate and display information that enables you to effectively manage your medical insurance program. Please download and evaluate the product before purchasing it - No refunds!!!";
fDesc[15] = ", mortgages, loans. There is no chance that you will have to pay a late payment fee again.";
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 = '...';
}
}