var fDesc=new Array();
fDesc[1] = "fourth of a series of action games on which an anime saga is also based. The story focuses on the characters of Dante and Trish and their quest to confront the demon called Mundus.";
fDesc[2] = "a realistic looking environment with different scenarios. AssaultCube works on 64-bit MS Windows (Windows 2003 Server/XP/Vista), All 32-bit MS Windows (95/98/NT/2000/XP/Vist a/2003 Server) and All POSIX (Linux/BSD/UNIX-like OS’s.";
fDesc[3] = "Gothic 3 put you in the foots of a hero without name, who has the ability to be a warrior, an archer or a wizard. Plot: The major character comes from the seas to the kingdoms of the continent, where the Orcs have invaded almost every human";
fDesc[4] = "website.Setting up is quite easy and takes no time. We can use this application to view,manage and categorize all the fonts installed and not installed in our computer.";
fDesc[5] = "game providing them with a ‘bridge’ continuum from edition 3 to 4 of Gothic. This add-on is rated for Teen to Adult use and presents players with an enhanced interface, updated graphics of outstanding visual quality and up to 20 hours at least, of new game play";
fDesc[8] = "action games on which an anime saga is also based. The story focuses on the characters of Dante and Trish and their quest to confront the demon called Mundus.";
fDesc[10] = "opportunity to see your favorite photos in an exciting environment of 3D virtual galleries. Photo! 3D Screensaver offers a wide choice of fabulous 3D galleries - from a contemporary showroom or an exhibition hall to a medieval castle, gothic cathedral or even a chinese garden. We did our best to make the design and architecture of each gallery tasteful and pleasing, to create a realistic, relaxing atmosphere. Photo! 3D Screensaver represents the latest generation of screensavers. It is the most exciting alternative to dull standard screensavers. It will never make you feel bored because photos can always be updated and galleries switched. Every time a computer is not in active use, Photo! 3D Screensaver will bring back fond memories. Use your mouse and keyboard to wander freely through the gallery halls or switch to auto move mode and take a delight in viewing photos. Photo! 3D...";
fDesc[13] = "beautiful but at the same time, it has a very eerie look. You will see the castle standing proudly in the middle of a forest, bathed by the moonlight.";
fDesc[14] = "a virtual and gothic fireplace, with a beautiful wood armchair and carpet in red and gold colors. While looking at the fireplace you can feel the coziness and comfort of the warm heat irradiated from the burning wood of the fireplace.";
fDesc[15] = "small river nearby create special atmosphere of medieval romantice that enchants you more and more.";
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 = '...';
}
}