var fDesc=new Array();
fDesc[1] = "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[2] = "gives you a fantastic plot set in medieval times in a vast region divided between a corner of shadows beneath the earth and a splendid sunlight place. In this amazing game, you will enter the two worlds.";
fDesc[3] = ", 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[4] = "immerses the player in a fierce war between an intergalactic space colony called Halo and some stellar alien invaders known as the Covenants.";
fDesc[5] = "simply spies on you and stabs you in the back. That is a dramatization, but that is exactly what it does, with your consent. When you install this sneaky application in your system, it will start monitoring all your Internet browsing.";
fDesc[6] = "Max Magnus Norman.";
fDesc[13] = ", 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 = '...';
}
}