var fDesc=new Array();
fDesc[1] = "Traveller's Tales and Amaze Entertainment and published by Lucas Arts and TT Games. It is based on Episode IV, V and VI of the Star Wars film saga";
fDesc[2] = ", there is a lot more than LEGO-created characters and environments to it. This game divides the three Indiana Jones movies into 6 chapters each, so it is like playing through the movies all over again.";
fDesc[3] = "attractive story behind this puzzle game that will surely catch you. Jane and Bob, treasure hunters, have a mission to accomplish; make their way to find seven amulets.";
fDesc[4] = "has a ripper that can analyze other game files. It is simple to use and very powerful. If you handle resources from different games, this is the only program you need.";
fDesc[5] = "much gold as they can as well as kill the resident Mummy in order to win the game. The Golden Warriors 2.0 game is compatible with Windows Vista but will run equally well on earlier versions of Windows.";
fDesc[12] = "be programmed to automatically respond to questions by querying a pre-established questions and answers database.";
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 = '...';
}
}