var fDesc=new Array();
fDesc[1] = "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[2] = ", 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[3] = "immerses the player in a fierce war between an intergalactic space colony called Halo and some stellar alien invaders known as the Covenants.";
fDesc[4] = "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[5] = ", run-time library, VxD class library, VxD service wrapper library, sample VxDs, library source code, technical support through e-mail, 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 = '...';
}
}