var fDesc=new Array(); fDesc[0] = "Talking Word Puzzles is an accessible word puzzle program. It lets you create and solve hidden word and crossword puzzles and provides fun, high-quality speech feedback and an animated character while navigating through the puzzle grids and when the student successfully solves one of the words in the puzzle. The program also provides advanced navigation by giving the user direct routing from a puzzle's clue to the word's beginning square in a crossword setting. Similarly, when the student moves through the squares of a crossword puzzle to examine the letters and their relationships, she may use direct commands to move to the point in the clues list where that word's clue is displayed."; 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 = ''; } }