var fDesc=new Array(); fDesc[0] = "There are 3 steps for each problem. In the 1st step, a list of words is presented in which all but one belong to the same category and the user must identify the one word that does not belong. In the 2nd step, 3 reasons why the word selected does not belong to the original list are presented and the user must identify the correct reason. In the 3rd step, the user must find a word from a list of five words that belongs in the first list. The stimuli are graded from simple to complex vocabulary and degree of abstractness. Twenty informative lessons are provided."; 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 = ''; } }