var fDesc=new Array(); fDesc[0] = "After selecting a Word File on the Main Page, words in the Word File's Learning List can be systematically reviewed using the Review feature. By clicking the "Next.." each word can be reviewed. The "Review Options" button brings up a dialogue windows that allows users to customize that order in which audio is played. Words can also be marked as complete, and added to or dropped from the Learning List while being reviewed."; 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 = ''; } }