var fDesc=new Array(); fDesc[0] = "Multiple Meaning Words uses words that sound the same but have different spellings and different meanings (homophone). The program presents one member of a pair of homophone and asks the client to type a homophone for the word displayed.
Then two partial sentences are presented and the user must determine which homophone best completes each sentence.
Responses are appropriately reinforced and progress is recorded in special data files. The program contains 14 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 = ''; } }