var fDesc=new Array();
fDesc[1] = "combines all the features of a professional mathematics package with the simplicity of an easy to learn windows interface. It provides user-friendly help and tutorials to guide you through the easy and fun process of mastering GraphCalc.";
fDesc[2] = ", decimals, and currency. Control how theworksheet will look with customizing features that let you change th...";
fDesc[4] = "will encounter four exciting activities covering fractions, multiplication, division, geometry, and more. They'll have to use their heads, boost their smarts, to get to be a Number Hero too.";
fDesc[5] = "where the player has to save its planet by firing on the wave of mathematical equations before they hit the planet. The fire is effective only when the answer on the spaceship text box matches with the correct answer.";
fDesc[6] = "which are commonly used in the Imperial measurement system. Plus, the radius of circumferences can be calculated and much simpler operations can be done, such as additions, subtractions, divisions, etc. It also converts cm to inches and vice-versa.";
fDesc[9] = "types, lower & upper limits, decimal places count, digits to use, negative numbers probability, hexadecimal format...";
fDesc[12] = "Roman Numerals, Number Systems, and now World Currency. Definitions and Reference Tables are included. Educational.";
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 = '...';
}
}