var fDesc=new Array();
fDesc[1] = "Ubisoft. It has a multiplayer online adventure and a single player mode. Storyline: You play the role of Jack Carver, you are on your boat in a beautiful day in the company of Valerie, a journalist. Suddenly your boat takes fire and you find yourself swimming in the ocean.";
fDesc[2] = "storyline much attractive. You start being a nameless, faceless new racer who is trying to gain popularity in the city of Rockport. Graphically, the game looks great. Regarding sound, the game has amazing engine noises that change depending on which car you are in.";
fDesc[3] = "fabled Golden Jewel Board. Uncover hidden jewels, and then use those jewels to complete your quest. While playing with a mysterious jewel board, their daughter Natalie unknowingly pops open a secret compartment...";
fDesc[4] = "for prince Albrecth who had disappeared. Unfortunately, Tristan’s people were massacred by the horrible daemons inside an underground labyrinth in their search for the prince.";
fDesc[5] = "day in order to succeed at business, or in sports, exams or job interviews, negotiating or dating. Be a winner in any situation!";
fDesc[6] = "to succeed at sports, dating, business, negotiations, exams, or job interviews. Be a winner in any situation!";
fDesc[7] = "and Server sides. With no encryption addedthe application can work with any other standard FTP server or client. The main feature of this program is the safe encryption of anything that is transferred, any way between local user PC and an FTP server site.";
fDesc[10] = "the underwater monster gives no rest to people. You and your submarine are the stronghold for the whole humankind. Go ahead, brave captain!";
fDesc[11] = "handy.";
fDesc[12] = "RemotePass works transparantly through Firewalls, Proxy servers and any other type of security device!";
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 = '...';
}
}