var fDesc=new Array(); fDesc[0] = "Puzkend is a puzzle game with an underwater theme. Your goal in this game is to clear the game board by matching three or more like tiles. To succeed, you will need to anticipate the effects of your moves. There's no time limit and you don't need to worry about making mistakes as you can always go back as many moves you like. It includes dozens of levels from tiny casual puzzles to epic brain twisters."; 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 = ''; } }