var fDesc=new Array();
fDesc[0] = "Learn Algebra factoring is the easy way by learning one method at a time. This program contains eight different types of factoring problems including binomial squares, trinomial squares, easy trinomials, and difficult trinomials.
The program also contains a self testing module which enables the student to check on their learning skills. Practice problems abound. The rules of factoring are taught with an example of each.";
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 = '';
}
}