var fDesc=new Array(); fDesc[0] = "Mummy Ball is an arcade game in which you have to find treasures, fight ghosts and escape from the tombs. Exploring the remains of an ancient city, you discover a secret door that leads you into a room with a mysterious artefact. You must pass the labyrinth, paving the way and fighting with the guardians of the dungeons so as not to remain an eternal captive of the ancient tombs."; 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 = ''; } }