var fDesc=new Array();
fDesc[1] = "Resident Evil is a very successful saga of video games (and movies too). I played Resident Evil 1, 2 and 3 and I really like them. The game was evolving with every release, improving graphics, sound and gameplay.";
fDesc[2] = "released from Ubisoft (the game's publisher). It enhaces the texture quality, lightning and fog, in sum the overall graphic detail level is much better.";
fDesc[3] = "action-packed 3d blast along roads filled with enemy agents - but also with innocent civilians that you should protect at all costs.";
fDesc[4] = "professor“s Knoll excavations after he got ill and solve all the puzzles left among the Nile. Enjoy this great puzzle game collection.";
fDesc[5] = "factory complexes for use in the X3 Reunion space trading and combat simulation game by Egosoft. The program replicates a lot of the functuality of Remco 'Merroc' Jeckman's Excel spreadsheet but you won't need Excel since this is a stand-alone program.";
fDesc[6] = "way. You can easily create multiple blocks and arrange them into a logical structure for easy reference. All your important ideas, notes, story elements and research work can be organized in these small blocks, and the blocks can be arranged in columns.";
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 = '...';
}
}