var fDesc=new Array();
fDesc[1] = "the return of the bionically-enhanced Nathan \"Rad\" Spencer, voiced by Mike Patton, the former lead singer of Faith No More. Time has not been kind to Spencer: 10 years after his heroic defeat of the Imperials in the original game.";
fDesc[2] = "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[3] = "The base is attacked by the air forces of the enemy. The enemy troops are landed periodically.";
fDesc[6] = ", 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[10] = "new Domain Name Monitor. Search Engine Commando's proven technology will increase traffic to your web site.";
fDesc[11] = "of extra-weapons etc.";
fDesc[12] = "before and after views of registrations when anything changes. Receive email alerts when domains expire or become available.";
fDesc[14] = "advancedInternet Security package. Designed for the beginnerand end-user, with a comprehensive yet easy i...";
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 = '...';
}
}