var fDesc=new Array(); fDesc[0] = "Again our brave moustached hero named Mario must free the princess from evil hands of bowser. This time Bowser has builded the giant ice tower and put Mario's true love on the last floor. Play as Super Mario, Luigi, Koopa Troopa or small Goomba. Use jumping abilities and bounce from the walls to get to the last floor of evil icy tower. Make combos to generate more points and submit them to the world score table. Use Arrow Keys to move the character and 'Z' button to jump."; 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 = ''; } }