var fDesc=new Array(); fDesc[0] = "Spelling Depot is the student and educator's one-stop solution for the practice, assessment, and ultimate mastery of spelling lists. Word lists can be generated within the program or imported from a word processor document. Each word can, optionally, include the word's definition. Word lists can be of any length. The teacher or parent can see scores by class or individual for each spelling test. Additional analysis tools are available by test or by class. Access to the class lists and tests can be password protected by the administrator."; 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 = ''; } }