var fDesc=new Array();
fDesc[1] = "Entertainment. In 2001, this game became one of the most popular on-line games through, inter alia, free servers that Blizzard offers, forming the network Battle.net.";
fDesc[2] = "you expect. This game includes shooting, fire, weapons and equipment, special effects, intense battles, worthy adversaries. I think you won’t be bored, as you are waited for different surprises and real challenges.";
fDesc[3] = "futuristic game is set in the twenty-sixth century, in which the player has to assume the role of the Master Chief, a cybernetically enhanced \"SPARTAN\" super-soldier.";
fDesc[4] = ", is now available for Windows Vista. This is the first Live platform title for PC which is similar to the gamers community platform Microsoft developed for its Xbox 360 console.";
fDesc[7] = ", an undead antihero who takes on a futuristic city using nothing but his own carcass and the weapons of his possessed enemies. This third-person action game uses the Halo engine and integrates tongue-in-cheek humor and a strong storyline with innovative combat. In death, Stubbs has finally achieved the success and power he never had in life – and he sees no reason to stop until all of Punchbowl, Pennyslvania is his. Of course, billionaire playboy industrialist Andrew Monday has other ideas. The tension mounts until the city explodes in a full-scale human vs. zombie war. Features: * Be the Zombie in an epic battle between the living and the dead. * Take over Punchbowl, an immersive, futuristic city built with the Halo engine. * Convert bitter enemies into a horde of zombie allies by eating their brains. * Use your body as a weapon: explosive gut grenades, toxic zombie sputum, a...";
fDesc[8] = "immerses the player in a fierce war between an intergalactic space colony called Halo and some stellar alien invaders known as the Covenants.";
fDesc[12] = "the babysitter of baby monsters. Some of the actions you have to take care of are: placing babies in a crib for a nap, putting hungry babies in a high chair to be fed, after a fight, put both babies band-aids on, among others.";
fDesc[13] = "things, basic \"tags\" for bitmaps, vehicles, weapons, bipeds, and other necessary elements of a Halo map. The kit comes with three programs designed to assist mappers. The first program is Tool. Tool is both the backbone and the pain of CE. Although it is capable of everything from bitmap creation to the final map-building, its old-style command prompt methods have driven at least a few mappers insane. The second program, known as Guerilla and labeled with a gorilla (pun intended), opens tags and edits them. Tags are files that make up everything in a Halo map: weapons, vehicles, etc. Guerilla can edit them so that mappers can alter what a specific item, what it does and how it looks (such as change a vehicle's color). Guerilla tends to crash wehn it encounters corrupted tags. The third program is Sapien, continues the primate naming scheme. Sapien opens scenario tags and creates a...";
fDesc[14] = "you to enjoy some of the best scenes shown in the game at anytime, even without playing it. Have you followed the saga of Halo? If you haven't, do not worry. You do not have to be an expert shooter or know all the rules of the game to be able to enjoy this awesome screen saver.";
fDesc[15] = "players, set up maps and create your INI file.";
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 = '...';
}
}