var fDesc=new Array(); fDesc[0] = "Hover! is a racing game where you play along with with other robotic pilots. You steer your Hover 950 craft through the murky realms of Hover!, an amusement ride created by robots from the future. The object is simple: steal all of the drones' flags before the drones capture yours. You will be awarded points for each of the enemy flags you collect and for every one of your flags remaining when you finish the level ahead of the drones."; 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 = ''; } }