var fDesc=new Array();
fDesc[0] = "This content-packed interactive program builds the foundation for success in reading and math. Letters and Numbers features 11 sing-along songs and 15 two-level activities to teach children letter names, numbers, phonics, basic addition, and more.
Main features:
- The Super Star Motivational and Data Tracking system, which encourages students to earn silver and gold stars by completing each song, activity, or game
- Winner of the National Parenting Center Seal of Approval
- Optional instructions in Spanish";
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 = '';
}
}