var fDesc=new Array(); fDesc[0] = "Spelling Test Practice allows you to create, record, and save a spelling list so that you can practice each day for a spelling test. Lists are saved to the hard drive as name.spl files. You enter a spelling word and record its pronunciation so that when you take a practice test, you hear the word. You can view reports of your grades and misspelled words. Great for Junior High and High School students."; 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 = ''; } }