var fDesc=new Array(); fDesc[0] = "This ancient Chinese game will keep you wanting more! All you have to do in this game clear each level by matching tiles to remove them. While matching tiles you must select two tiles that match and are not blocked from the right or the left. If you cannot select a tile then it is blocked. This game is super fun!"; 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 = ''; } }