var fDesc=new Array();
fDesc[2] = "developers, including Atari, Popcap and WildTangent Studios. WildCoins are a payment system you can use to play WildGames. They work like quarters in an arcade.";
fDesc[3] = "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[4] = "accounts, manage their purses and maintain a list of correspondents, assigning additional contact data to their WebMoney IDs, such as names, email addresses and phone numbers.";
fDesc[5] = "description, images, prices, condition, etc. to eBay. Search engines for finding specific items. No HTML knowledge, lists edition for adding items, reusing the lists, change the list format or get templates, add pictures, payment conditions, shipping, taxes, and upload them at once.";
fDesc[6] = "needs. This version is completely free, but big companies may need to buy the more full-featured Office Accounting 2008 Professional which includes more complex tools, such as multi currency support, which is an essential feature for businesses selling to international customers.";
fDesc[7] = "multiple currencies, track spending habits, record expenses, transfer among accounts and even do on-line banking.";
fDesc[8] = "the most reliable systems of registration, ordering and payment over the Web. RegNow is a company with a world-wide reputation";
fDesc[9] = ", 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[10] = "payment frequency. It allows you to compare two loans side-by-side and calculates Principal, Interest, Taxes and Insurance!";
fDesc[11] = "the most popular forms of payment - Paypal. With this program you will be able to create your online shop without knowing how to integrate PayPal.";
fDesc[12] = "have to insert some basic data (loan value, payment frequency, amount of periods, rate, and payments) and you will be able to get 135 results in a table so you can study payment amounts, interest rates, terms of the loans, and amounts borrowed and find the best terms for you.";
fDesc[14] = ", look no more. You’ve just found the most appropriate tool: MoneyToys Free Loan Calculator. As its name indicates it’s a free application available to be downloaded from the Wheatworks web site.";
fDesc[15] = "estimate monthly expenses on your mortgage: interest payments, property taxes and private mortgage insurance.";
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 = '...';
}
}