var fDesc=new Array(); fDesc[0] = "Ultimate Sonic is an amazing remake of the Sega genesis game Sonic the Hedgehog. Select Sonic, Tails, Knuckles or Cream as your character. Complete each level by running to the end point. Avoid the enemies and the objects which they throw. Collect the rings. If you are hit by an enemy you lose your rings, if you have no rings you lose a life. The game ends once all lifes are gone. Tips & Tricks Always keep rings - When hit you only lose the rings instead of losing a life."; 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 = ''; } }