var fDesc=new Array(); fDesc[0] = "In this turn based game, you are in control of a fighter plane in the Battle of London, 1940. Shoot down wave after wave of enemy planes, zeppelins and A.A. guns. Collect a variety of power ups and earn cash to upgrade to many different fighter planes with varying attributes. The ?Survival Mode? aspect to this game adds the need for strategy to ensure you stay alive and in the sky for any length of time."; 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 = ''; } }