var fDesc=new Array();
fDesc[0] = "Wings Of Fury 2 is a remake of classic 1987 action game - Wings Of Fury.
Main features:
- Free remake of classical arcade shooting game with modern 3d graphics including some nice special effects.
- The game rules remained the same - plane moves left & right. Your mission is to fight enemy installations, ships, planes and soldiers.
- Plane can be equipped with bombs, topedoes or rockets. Machine gun is always available
- Aircraft carrier is the place where the plane is repaired & resupplied. Successful take off and touch down is essential.
- Several mission types (bombing run, assasination, naval, dogfight). Levels differ by landscape, enemy force and daytime.
- Modding capabilities.
- And many more";
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 = '';
}
}