var fDesc=new Array();
fDesc[0] = "Fly a World War I bi-plane, and experience aerial combat in its purest form. No jets, no computers, no heat-seeking missiles - just the wind in your struts and blazing machine-guns!
Red Ace Squadron is the follow-up to the best-selling Master Of The Skies: The Red Ace. You won't need to learn complex key commands or read a huge manual to play - your plane is controlled solely by the mouse and a few other keys.
Play for either the Allied or Central Powers forces across 14 new single-player missions, or take on human opponents in the all-new Multiplayer mode. Whether you choose to play online or alone, Red Ace Squadron is the ultimate propellor-driven dogfighting experience.
Main features:
- Play two new single-player campaigns, or multiplayer via LAN or Internet
- Multiplayer allows up to 8 pilots to compete simultaneously
- Follow Allied or Central Powers campaigns in single player, with 14 new missions
- New power-up stations allow players to re-arm and repair
- Pilot two new twin-engined bombers - the Handley Page and the Gotha G IV
- Complete campaigns to access special super-hard Master Mode, and a secret mission!";
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 = '';
}
}