var fDesc=new Array(); fDesc[0] = "The purpose of this game is to safely guard your airship while traveling between destinations. Do this by shooting down enemy aircraft and repairing your ship as it is damaged.

In an apocalyptic future, you are a privateer ferrying goods across treacherous airspace. Protect your airship and yourself from an onslaught of pirates, and safely reach your destination to reap the rewards."; 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 = ''; } }