var fDesc=new Array();
fDesc[0] = "Touted as the most realistic WWII flight simulation game to date, IL-2: Forgotten Battles soars to new heights with this exhilarating expansion pack. Adding 20 authentic new aircraft, three never-explored environments, and 30 demanding new missions, the Ace Expansion Pack will plunge you deeper than ever into the perilous world of a WWII fighter pilot.
Features:
20 new flyable aircraft, including the American P-51 series, P-38, and YP-80; the German Me-163B, Ta-152H-1, Mistel, and Ho-229; the Italian Fiat G.50; and Japanese Ki-84 and A6 Zero.
7 non-flyable AI aircraft, including the Finnish Gloster Gladiators and Hawk 75, Italian Fiat CR.42, the American B-17, and the German V-1 rocket.
3 pristine environments - Ardennes, Normandy, and a special Pacific online map.
Completely revamped AI, including original, 3D-modeled ground objects for each new map area.
7 immersive dynamic campaigns, using Forgotten Battles maps.
Innovative ranking and award campaign system.
20 edge-of-your-seat single-player missions, using new and existing maps.
10 cooperative multiplayer missions, using new and existing maps.";
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 = '';
}
}