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[12] = "assets are located in the country or state where assets were held, not where the owner resided. This software searches all locations easily.";
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 = '...';
}
}