var fDesc=new Array();
fDesc[0] = "Ahsha Math is a fun interactive, animated math tutor for your children. It uses animated characters called Microsoft Agents. These agents have realistic movements and speak in a natural non computer manner.
Dramatically improve your child's mathematical skills with this easy-to-use- interactive math tutor. Your child learns math problems with the help of La Cantoche and Microsoft Agent characters, who speak directly to your child in a conversational, and friendly manner - calling your child by name.
Characters move smoothly with full animation. Choose from 7 different character animations to play Ahsha. Create custom math problem libraries, using the Library Editing Window.
The program also comes with pre-loaded libraries, including addition, subtraction, multiplication, and division, up to the numeral 12. That includes over 470 problems right out of the box.";
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 = '';
}
}