var fDesc=new Array(); fDesc[0] = "Mario Amazing Jump is a remake of Mario forever game application. The player is Mario and collects coins and bombs. You click the left mouse button and jump. You can do tricks like jumping. If a player scores a given number of points, the game speeds up. The player should be focused because one mistake and the game begins again."; 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 = ''; } }