var fDesc=new Array();
fDesc[0] = "Specially for Teachers, Private Tutors and Parents
Now you can prepare and print pre-algebra and algebra worksheets or test papers in minutes. The sums may be from any one or combination of the following topics:
Practices on
- Pre-algebra (integers)
- algebraic expressions
- algebraic expansion (multiplication of binomials and trinomials)
- algebraic factors
- algebraic fractions
- indices
- inequalities
- simple equations
- simultaneous equations
- quadratic equations
- algebraic fractions
- fractions
- decimals
- significant figures
- standard form
- ratio and proportion
- whole numbers
- percentages
- angle properties of polygons";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}