var fDesc=new Array(); fDesc[0] = "A combination Between a puzzle game and a shoot-em-up, in this game you must use your 3 differently colored beams to solve puzzles and destroy enemies. The game gets fairly hard and contains a number of stages as well as boss fights.
Space shooter that's actually more like a puzzle game. Your ship can shoot red, yellow, or blue beams and you switch between them at will. Lots of levels, 4 bosses, very tough... can you beat it?"; 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 = ''; } }