var fDesc=new Array(); fDesc[0] = "School Invaders is an action game! A group of very rude aliens have descended upon the schoolhouse, it is your job to defeat the enemy aliens and free your innocent classmates! The objective of the game is to gather your schoolmates and attempt to end the invasion. Search the corridors of the school for clues and powerups that will help you through the game. Try to walk slowly because the aliens are invisible at first. Try to just spray your bullets. Click the mouse to the location you want to go. Press the space bar to fire."; 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 = ''; } }