var fDesc=new Array(); fDesc[0] = "Puzzle Word is a classic word soup game. Your goal is to join the letter blocks to make words and gain points. The words must be at least three letters long and the blocks can be joined horizontally, vertically and diagonally. Every time you make a word, the letter blocks used disappear making the blocks above, fall down."; 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 = ''; } }