var fDesc=new Array(); fDesc[0] = "Hornado is a free spaceshooter game. It has a gameplay similar to Katakis, X-Out, Uridium and games like those. You control your spaceship using the cursor movement keys. As this is a horizontal scrolling game, the ship will be on the right of the screen, and the available movements will be up, down, right (forward) and left (back). To fire your laser, you will have to press the spacebar. Holding down the spacebar, will increase the power of your shoot, that will be triggered once you release the key. During your missions, you will have to destroy hordes of enemy ships, that will fire over you all the time. You will have to avoid or destroy the missiles they will launch to you. You will also have to move your ship to avoid hitting grounded objects, like rocks, structures or chains. Each time you hit an object, or a missile hits you, your spaceship is destroyed and you lose a life. When you run out of lives, the game is over. At the end of each level you´ll be awarded with points, and your weapons will be refilled."; 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 = ''; } }