var fDesc=new Array(); fDesc[0] = "BG Scrabble allows up to four players to play the popular word game, Scrabble. It is blind accessible but graphics allow sighted players to also play along with blind players. It allows play against one or more computer players. In a single player game, you play against yourself, trying to beat your previous high score. As with all Spoonbill Software's Blind Gamers games, it is self-voicing, obviating the need to use your screen reader."; 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 = ''; } }