var fDesc=new Array();
fDesc[0] = "Vocabulary and reading development software that adjusts to and allows you to monitor your child's progress.
Keeps track and adjusts according to a child's progress.
- Teaches over 830 words which are used over 12,000 times
- Contains 360 Definitions/Clues
- Allows a child to regulate the amount of assistance needed.
- Individual words in sentences and definitions can be "rolled over" with the mouse for pronunciation.
- Contains 100 word puzzles and 120 mystery pictures";
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 = '';
}
}