var fDesc=new Array(); fDesc[0] = "Wordigo is the popular board game that's now in stores across the country. It's a combination of a spelling game and a crossword puzzle. If you like word games, you'll love Wordigo. You can replay the same puzzle over and over with new words each time or pick from a variety of different puzzles to play. You can also select from three levels of difficulty -- easy, medium and hard. Timed Mode is a fast-moving race against time, where you must complete the puzzle before the clock runs out. Or play without a timer at your own pace."; 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 = ''; } }