var fDesc=new Array(); fDesc[0] = "This program provides 3 graded reading lesson-types and 3 graded spelling lessontypes. Spelling lessons range from identifying the correctly spelled word, to spelling a word when 3 letters are provided. Words are displayed as pictures. Difficulty level can be djusted by accepting partially correct spellings, showing the number of letters in the word, and providing the first letter of the word. Users type letters from the keyboard or click on letters using the mouse. Users get two chances to spell the word. There are 200 real-life pictures.

Requirements:

- Windows 98, 2000, XP, Vista, 7, 128 megabytes (MB) RAM."; 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 = ''; } }