var fDesc=new Array(); fDesc[0] = "Steel Sky is a flight simulator game in which you will feel like a real military pilot. You can choose one of the three game modes: World War II, Modern war or Future war. The difference between them is in the plane model and types of weapon. Shoot down the ground targets and enemies' planes, fly through the hail of bullets and escape the missiles. You will be attacked by the anti-aircraft mounts from the surface and by the planes in the sky. You can choose between three types of weapons: homing missiles, bombs or a machine-gun."; 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 = ''; } }