var fDesc=new Array(); fDesc[0] = "The program has four parts. The first part requires finding five words in a list that all belong to the same category when the category is not revealed. The second part requires users to identify the five words in the list that belong to that category. In the third part the user makes an association for each word in the category. The final part of the program requires users to sequence words according to a specified attribute like size. The program tracks performance and provides comprehensive stimuli within a variety of lessons."; 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 = ''; } }