var fDesc=new Array();
fDesc[1] = "enhancements. United Offensive presents a similar format to that found in Call of Duty. The player takes part of the game as three Allied soldiers--an American paratrooper, a British SAS commando, and a Soviet infantryman--who are trapped in the great fight against Nazi Germany.";
fDesc[2] = "The base is attacked by the air forces of the enemy. The enemy troops are landed periodically.";
fDesc[3] = "great FPS action, with beautiful maps, great weapons and lots of accessories. If you are a special forces fanatic, or you are into the FPS scene, give this game a try.";
fDesc[4] = ", situated on an island, is being attacked by the air forces of the enemy. The enemy´s attack is done by planes, helicopters and paratroopers. You must destroy the flying machines, and kill the troops that land.";
fDesc[5] = "fulfill missions that will change the course of the war. With over 20 missions and very specific skills of each soldier, the amount of thinking you have to do in this game is high, and it's also very fun.";
fDesc[6] = "of extra-weapons etc.";
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 = '...';
}
}