var fDesc=new Array(); fDesc[0] = "A simple analogy is presented to show a relationship. Then the first half of a test analogy is presented along with five possible choices for completing the analogy. The user simply selects the correct choice. Responses are reinforced. A second chance is offered for incorrect responses and the answer is supplied if that response is incorrect. New lessons can easily be created using the accompanying program:Edit Verbal Analogies. In addition, the program records performance, prints performance reports, including user response times. The program includes onscreen help."; 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 = ''; } }