var fDesc=new Array();
fDesc[1] = "numbers. After this your kids can learn addition, subtraction, multiplication and division ranging from 0 to 100 very easily. All these features are presented in a graphical view with attractive images.";
fDesc[2] = "distances, intersections, volume, area of squeres, area of a triangle can be calculated. (5 languages)";
fDesc[3] = "capabilities. The game play is quite simple. All we need to do is select the arithmetic operation we want to practice (addition, subtraction, multiplication, division) from the Problem Type menu. We can also select a vehicle, and then start doing the exercise proposed by the program.";
fDesc[4] = "calculation method is preselectable, including simple counting exercises, addition with symbols, addition/subtraction, multiplication and division.";
fDesc[5] = "division or fractions for an exercise.";
fDesc[6] = "8 levels of difficulty. Features addition, subtraction, multiplication, division, and negative numbers.";
fDesc[7] = ", decimals, and currency. Control how theworksheet will look with customizing features that let you change th...";
fDesc[8] = "will help! Includes: - Multiplication Practice - Division Practice - Addition Practice - Subtraction Practice.";
fDesc[9] = "the user in a flash-card type scenario. This application is released free of charge to promote interest in math.";
fDesc[10] = "children. However, this doesn't mean that you shouldn't use it, if you are older.";
fDesc[11] = ", multiplication tables up to 12, a speaking clock and much more. All in a motivational and friendly game format.";
fDesc[12] = "This application features a unique method based in mental calculation that improve learner's capabilities to solve any type of Math problems at ease, without the need of calculators or pen and paper. This program is suitable for children and adults alike.";
fDesc[14] = "or practice addition, multiplication, subtraction and division. The application is very easy-to-use, but that does not mean the answers are easy at all.";
fDesc[15] = "multiplication and division operations. You can either practice operations separately or take a test of your level. You solve problems as you do on paper - you do not enter answers in a box. Some of the features of the program are easy to use interface, optional time limits and flexible arrangement of questions (up to six digit addition and subtraction; 5x5 digit multiplication; up to three digit quotient and divisor, etc.). You can have up to 999 questions for tests and choose which operations to include and how many digits the numbers can have in the test. You can enter your questions to be asked. In the unregistered version you can solve up to 15 questions from each operation and the number of questions in the test mode is limited to 9.";
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 = '...';
}
}