var fDesc=new Array(); fDesc[0] = "MahJong Ace is an entertaining puzzle game that can be downloaded for free. On it you have to match tiles in pairs until you use all of the tiles. Once two tiles have been matched, they will disappear from the board. If you get stuck, try a Hint or Shuffle the board! You will have to try to score the most point you can. There are instructions on how to play when you first run the game."; 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 = ''; } }