var fDesc=new Array();
fDesc[0] = "Two different people, places, or things are presented like a director and producer and the user is asked what they have in common. Users choose from a list of four alternatives like: They make movies; They write commercials; They oversee construction; and They work in restaurants.
The user is instructed to choose the best alternative. These are creative lessons by Susan Howell Brubaker experienced speech-language pathologist and workbook author, 150 different situations, timed responses, large easy-to-read screens, cumulative progress reports, flexibility to adjust the number of incorrect responses before the correct answer is supplied.";
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 = '';
}
}