var fDesc=new Array(); fDesc[0] = "Program shows the patient a letter, word, or picture and the patient responds by choosing or typing an answer. If the answer is incorrect, program gives the patient helpful hints. Aphasic patients use it independently, thanks to special features, starting with relearning the alphabet then identifying objects by matching a word to a picture."; 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 = ''; } }