var fDesc=new Array();
fDesc[0] = "A calculator that performs the basic arithmetic operations on fractions AND then at the press of a button gives you a detailed explanation of how the computation was done.
An ideal tool for learning about fractions and how to do the basic arithmetic operations on them.
Also includes a factoriser, this tells you all the factors of any number up to 13 digits long.";
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 = '';
}
}