var fDesc=new Array();
fDesc[1] = "who require a program that gives them unlimited design options with professional tools they can use to create 2D technical, artistic, and mechanical drawings with which they can create 3D models.";
fDesc[2] = "viscosity. Work with feet and inches. Formatting and clipboard features. Excludes archaic units.";
fDesc[3] = "edit and typeset this kind of text with ease. Scientific WorkPlace is basically a word processor that integrates mathematical input and computations. Scientific WorkPlace uses LaTeX.";
fDesc[4] = "every unit of measurement from one to another in a short time. The program counts with a extremely easy-to-use and simple interface. It will guide even first-time users to convert from one unit to another without any problem.";
fDesc[5] = "different difficulty levels,kids between age 4-7 yrs would really relish learning the so called difficult subject MATHS.Arthur`s Maths games would really shape the calculative abilities of children.";
fDesc[6] = "grade kids. The game is developed to assist the teaching of reading for kids with ages 6 to 8. You must help Reader Rabbit and Sam the Lion to obtain the things that the Professor requires to fix his hovercraft, and then recover their Dreamship.";
fDesc[7] = "mathematical correlations in a very clear and simple way. The program covers the areas Analysis, Geometry, Algebra, Stochastics,Vector algebra.";
fDesc[12] = "and solving equations. A step by step explanation of problems concerning fractions,binomials, trinomials etc.";
fDesc[13] = "Skills covered include prime numbers, factoring, squares, cubes, remainders, fractions, percentages, algebra and logic. You will dramatically increase your appreciation of numbers.";
fDesc[15] = ", factorising, simplifying and solving equations. A step by step explanation of problems concerning fractions,binomials, trinomials etc.";
fDesc[18] = "supports 150 functions and operators. Common fractions are supported too now.";
fDesc[19] = "tapes which you can edit. It can make and record complex sets of interrelated calculations, print and save tapes.";
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 = '...';
}
}