var fDesc=new Array();
fDesc[1] = "several different currencies, and multiple locations. You can control Inventory, Order Processing, Invoices, Documents, Letters, Sales Tax Reports, VAT Reports, Service Tax, TDS, FBT and reports sent by E-Mail or SMS.";
fDesc[2] = "Calypso, to which new players arrive. The game features an innovative concept of linking real-life currency with the in-game currency, effectively creating a game with a cash economy. It is an innovative concept and is well done.";
fDesc[3] = "to another currency. currency converter allow you to convert an amount within two simple click. Free Currencuy converter allow to convert from and to euro, yen, usd, gbp and many other currencies with a real time exchange value. Easy usage. For example: enter eur to usd or uds to eur or yen euro or gbp eur to obtain the initial ammount converted for free in realtime.";
fDesc[4] = "US Dollar, Euro, Pound, Rupee, etc. It lets you update exchange rates with a single button by connecting to a remote server (internet connection needed).";
fDesc[5] = "are updated daily (during workdays). Internet connection is required for precise calculations. FREE trial!";
fDesc[6] = "objective of this small program is to show you the results of any math operation converted to different currencies automatically. Besides, the program is able to update the conversion rate every time you start the program, giving you precise results.";
fDesc[7] = "tab delimited text file, and many more...";
fDesc[8] = "spreadsheet interface and translucent skins. Calculator and euro conversion functionality never expire (freeware).";
fDesc[10] = "or South African Rand. Including latest exchange rates from the European Central Bank.";
fDesc[12] = "even allows one 'user-customizable' currency in case the currency you want isn't included in the 29 already provided.";
fDesc[13] = "and get result.";
fDesc[14] = "limited to Euro Area (Euroland) currencies with fixed change but can also convert many other world currencies and update their changes from internet. Euro Converter is a very flexible application and permit to personalize the currencies list adding other currencies. Plus many options are available to specify number rounding rules and simplify input of data. It's designed with a compact and functional interface that minimize the footprint on desktop. Available in English, Italian, French and German.";
fDesc[15] = "tolerance, easy administration, compliance with euro (triangulation, rounding, past and future currencies).";
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 = '...';
}
}