var fDesc=new Array(); fDesc[0] = "For most of the game, you run to the right across cities and sewers, shooting bullets across the screen to destroy any enemies in your way.
In two base stages, the view changes to behind your commando's back. The stages look 3D, but you are still constrained to move left and right (until you blow out the room's back wall... but as you move forward, you will not be attacked)."; 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 = ''; } }