var fDesc=new Array();
fDesc[0] = "The employees of Airways Airlines are an interesting bunch. Their airport is going to be closed if they don't get some help quick. Take charge and get the airport running smooth. Be responsible for delivering all passengers and keep them happy. But you're not alone - employees will be working along side you. Lead your team and help them learn skills.
-Master the new "pickup-and-deliver" gameplay
- 4 game modes: Career, Free Play, Challenge and Survival
-Earn records, unlockables and achievements
As far as Time Management games go, this one is designed to be a challenge but not land you in a pit of frustration. You may find yourself sweating to complete a month but feel extremely rewarded when you’ve pulled it off
Runs on Windows, Mac and Linux";
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 = '';
}
}