var fDesc=new Array();
fDesc[0] = "Learning intermediate phonics becomes a finger-snapping experience with this musical multimedia program!
Phonics 2a begins with a review of basic phonics concepts and sounds. The "Learn the Words" section helps the student see a picture of the word, see and hear the word, and then see and hear how the word is formed phonetically. Exciting and challenging spelling and review games give students a jump-start on reading and spelling.";
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 = '';
}
}