var fDesc=new Array();
fDesc[1] = "this program will band together to make one of the largest supercomputers in the world. This supercomputer will be used to simulate problems millions of times more challenging than previously achieved.";
fDesc[2] = "your character has. This includes the glaive, a triple edged metal boomerang that can shred your opponents to pieces. The game is fun and entertaining, recommendable for action gamers.";
fDesc[3] = "fantasy land of Styrateg from the grip of evil emerging in the ancient kingdoms of the land. It features over 20 unique levels of play and the Styrateg 1.1 game includes original medieval music which adds to the atmosphere of the player’s experience.";
fDesc[5] = "weight and height. Therefore, this diagnostic tool called BMI Calculator will help you to identify obesity problems. With this powerful tool everybody can easily get important and valuable information regarding their weight. And with that, improve in a positive way your diet.";
fDesc[6] = "district level and aimed to become the standard for mapping and managing health information. The interface can be used in several different languages. It works using a map of the selected country or global region which is built using layers.";
fDesc[8] = "codes.";
fDesc[12] = "stands for ?Diagnostic and Statistical Manual of Mental Disorders? and is published by the American Psychiatric Assoc.";
fDesc[14] = "keeping all your data organized, making sure you never miss an important medical appointment or shot.";
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 = '...';
}
}