var fDesc=new Array(); fDesc[0] = "The idea of the game is familiar to all mahjongg masters: match tiles in pairs to eliminate them from the board. But unlike the traditional mahjongg, Bloxx It has a time limit and features point scoring. The faster you play, the more points you get. But be quick and use game tips: if you don't get rid of all tiles before the time runs out - you will lose!"; 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 = ''; } }