var fDesc=new Array();
fDesc[1] = "a lot of great mathematical and conversion functions which are not easy to find all in one program.You can choose from three types of calculators: the standard, scientific and the conversion calculator.";
fDesc[2] = "first piece of evidence of that. But is worth every pound of its weight and every buck of its price. Why is that? Because it does what any other PDF creation and edition can do and some things else";
fDesc[3] = "allow you to feel like one. You will be able to see banknotes everywhere around your screen. The notes are very realistic and you can almost \"smell the money\".";
fDesc[4] = "All you have to do to convert the available units from one into another is to choose the unit you want to convert, type a number on the program's screen and then select the output unit.";
fDesc[5] = "the most reliable systems of registration, ordering and payment over the Web. RegNow is a company with a world-wide reputation";
fDesc[6] = "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[7] = "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[8] = "\"Euros\" (for example). Also, use this program to convert numbers to letters in cells. Excel 2000 or higher required.";
fDesc[9] = "spreadsheet interface and translucent skins. Calculator and euro conversion functionality never expire (freeware).";
fDesc[12] = "or South African Rand. Including latest exchange rates from the European Central Bank.";
fDesc[13] = "software, enter your amount and the conversion is done.";
fDesc[14] = "Card Validator";
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 = '...';
}
}