var fDesc=new Array();
fDesc[0] = "Word Drop is a great memorization game.
There are two ways to use this program:
TEACH MODE: This mode displays a phrase or verse on screen, and then removes a word from the screen one at a time (or more than one at a time). It's a great way to teach through repetition.
REVIEW MODE: This way of playing displays the phrase, leaving a word (or words) blank. You can use the included timer to add excitement to guessing the missing word(s).";
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 = '';
}
}