var fDesc=new Array();
fDesc[0] = "SmartyAnts opens up a whole new world of reading for your child, whether she's completely new to ABCs, already reading, or somewhere in between.
SmartyAnts assesses each child's skills and tailors a reading program just right for his abilities and personality. Plus the Reading Pup is a real-world buddy that sings and tells stories to reinforce what your child learns.";
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 = '';
}
}