var fDesc=new Array();
fDesc[1] = "of the nobility and is stripped of his property and his families. The adventures begin when he decides to join a vessel which you can select, the choices are English, Spanish, Dutch and French.";
fDesc[2] = ", follow clues and solve a murder case. It features good graphics, music and sounds, and a good amount of levels which connect with each other.";
fDesc[3] = "finds which AcuPoints are opened at a given date. It implements antique Chinese Techniques: Zi Wu Liu Zhu ....";
fDesc[4] = "incarnation of the classic board game with some interesting variations. Battleship is the classic game of naval strategy. You will take turns trying to find your opponent’s fleet and blast them out of the water.";
fDesc[5] = "advanced PC and Pocket PC gamer. Realms Start with any of six different races and prepare your ship to embark on a journey through the six realms, encountering minefields, power generators, guardians and protectors. Collect Tari to upgrade your ship and buy inventory to make your journey less perilous. Once your vessel is armed, prepare to test your skills in destruction, strategy, defense, and maneuverability as you engage in space warfare";
fDesc[7] = "onboard communication through a Thrane and Thrane Inmarsat-C or mini-C transceiver. It provides a range of features like an address book, an option to enter the vessel data and insert it into email, GPS status, merge files, and many more.";
fDesc[8] = "machinery, or office equipment, this software will do the job.";
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 = '...';
}
}