var fDesc=new Array();
fDesc[1] = "a lot, and easily. In this case, the game has little to nothing to do with the Tom Clancy world. You are given hints that you are indeed in the timeline portrayed in several other TC games, but that is it.";
fDesc[2] = "fighting machine with weapon upgrades, rocket turrets, bots and additional weapons. Encounter various modifications of enemy fighters, cruisers, mine-layers and ground defences. Destroy vast command ships before they destroy you. Gorgeous graphics and special effects, original environment in each level and much more.";
fDesc[3] = "popular, for it's special effects and good fighting sequence. The game features 10 characters with 2 characters which can be unlocked by doing some actions such as transformation or fusion. This game also contain 2 more characters and other minor characters which can be unlocked by typing a code at the main menu which you will get after completing the game at Difficult level but the code is most likely no longer secret. All characters are playable by this code. Each character has it's own different attacks. This game contains many type of game play like VS mode: You can fight either computers or a friend, Story mode: To go progress through a series of levels with a boss at each end of the level. Tournament mode 1v1 or 2v2: Fight through a series of Players to progress to the top of the hill to win.Battle Mode: Like a war where you can have minor characters fight along you in a large...";
fDesc[4] = "players on a single PC and up to eight characters on screen in online mode. This new version has four Battle modes, a survival Stage, a game recording feature and background music.";
fDesc[5] = "will need WinMUGEN installed in your system. WinMugen is a game engine that allows you to fight against different enemies. Fighter Factory will let you create characters from the scratch or modify existing ones, to use them later in your games.";
fDesc[6] = "be a complete castle to be explored, guarded by Knights of the True Horn. There is a secret treasure for the player to be found and a combat trainer to have some practice. The castle can be re-furnished and the Armorer skill can be enhanced.";
fDesc[7] = "a flash version of this classic, recreating the final fight between Ryu and one of his most fierce rivals, the powerful Sagat. After being defeated by Ryu in their last fight and with an awful scar in his chest, Sagat is ready to face his legendary opponent.";
fDesc[8] = "formidable air combat fighter aircraft. Players will find themselves in a highly detailed simulation of the MiG-29 Fulcrum 1.0 cockpit which features meticulous glass reflections and realistic dials and radar screen.";
fDesc[9] = "the feeling of flying at high speeds without any of the risks involved. It will show you a group of fighter jets speeding through the sky, almost all of the time at low altitude.";
fDesc[10] = "your galaxy from the attack of hostile ships. The game mechanics is quite simple, you move the ship with your mouse to avoid contact with the enemy’s stars while shooting them with the left button.";
fDesc[11] = "role jet fighter aircraft. Designed as a lightweight fighter, it evolved into a successful multi role aircraft.";
fDesc[12] = "much as you can in the middle of an hostile space environment, facing a lot of dangers and threatens, to finally destroy the Horde’s starbase.";
fDesc[13] = "F-16 Multirole Fighter 1.0 sim is designed to provide you with the real life experience of flying this amazing aircraft. The Sim boasts of authentic lockheed approved sim model of the planes and the sim has been tested by none other than the companies F-16 test pilot";
fDesc[14] = "collection of the most widely used fighter and attack aircraft. There are various paint schemes included in the add-on like F-14 Tomcat, F-15C Strike Eagle, F-16 Fighting Falcon and F/A-18 Hornet.";
fDesc[15] = "game, Tournament and Multiplayer game. Tournament mode really looks like the good old Street Fighter. The game can be played using stylus or gauges.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}