var fDesc=new Array(); fDesc[0] = "Gravity Block is a great arcade game where you control gravity. Change the direction of gravity by clicking on the appropriate keys, thus "throwing" a hero after moving. The purpose of the game is to get to the green cube, which will transfer you to the next level. But to achieve this goal, you will "interfere with" red cubes, which teleport you to the top level if you touch them."; 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 = ''; } }