var fDesc=new Array(); fDesc[1] = "lot of action, easy controls and, of course, a spectacular graphics display . Plot:You will be able to shoot to new enemies."; fDesc[2] = "between the rebellions and the empire, which is based on the Star Wars: Return of the Jedi film. Players should fight against TIE Fighters, Star Destroyers, TIE Interceptors, and finally, Executor – a Super Star Destroyer"; fDesc[4] = "players, that fans of the genre will love. The game is inspired by the classic Empire, and the objective is to conquer the world, by destroying the pieces or cities of your enemies."; fDesc[5] = "ducks that will not only fly and try to scape, but will also try to attack you shooting you different colors. On each stage you will have a number of ammo that will be reduced every time you shoot at them."; fDesc[6] = "and unique game play. There are bonuses that can be formed the longer you last in the game. Pure fun with stunning effects!"; fDesc[7] = "trying to earn enough cash to survive. Visit the shipyard, then outfit your new ship with weapons and other enhancements. Guaranteed fun!"; fDesc[8] = ", Destroyers, Corvettes. Your mission is to sink the enemy"; function tCollapseAll(maxID) { document.getElementById("alls_action").innerHTML = "Expand descriptions"; var id=1; for (id=1; id <= maxID; id++) { if (document.getElementById("desc_" + id)) tShowHide(id, 2); } } function tExpandAll(maxID) { document.getElementById("alls_action").innerHTML = "Collapse descriptions"; var id=1; for (id=1; id <= maxID; id++) { if (document.getElementById("more_" + id)) tShowHide(id, 1); } } function tShowHide(id, show) { var s = document.getElementById("more_" + id); if ((s.innerHTML!=fDesc[id] || show==1) && show!=2) { s.innerHTML = fDesc[id]; } else { s.innerHTML = '...'; } }