var fDesc=new Array();
fDesc[0] = "This Math 2-Pack contains two exceptional math titles, Deluxe Edition Math 1-2 and On-Track Math 1. Each program offers a wide variety of problems and formats designed to capture children's unique learning styles and keep them coming back for more. As part of the On-Track series, these programs “track” a child’s progress, color-coding correct/incorrect answers and giving first and second graders an at-a-glance review of their work.
This also gives them the chance to go back and make corrections. Combined with audio guidance, step-by-step instructions, and instant grading, the software promotes self-paced learning. Both titles also offer positive reinforcement through audio encouragement, reward animations, and a variety of games. Plus, your preschoolers can print progress reports and/or certificates of completion.";
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 = '';
}
}