var fDesc=new Array(); fDesc[0] = "The Impossible Game is an indie game in which you have to guide your orange square over spikes and jump onto blocks to get to the end of the level. Any mistake results in instant death, sending you back to the beginning of the level. You can unlock medals throughout the game and use checkpoints to learn the levels in the Practice Mode."; 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 = ''; } }