var fDesc=new Array(); fDesc[0] = "Your mission (if you choose to accept) is to rescue prisoners of war (POW's) from enemy territory, which could be a POW camp. Fly your helicopter into one of the three "hot zones" and pick up the POW's and bring them safely back to your home base.
You must defend your helicopter against enemy air-to-air attacks from attack helicopters and defend your helicopter against enemy ground-to-air attacks from troopers on the ground."; 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 = ''; } }