var fDesc=new Array();
fDesc[1] = "must run a hospital with a little sense of humour. The goal of the game is clear from the first step, you must build and run a hospital, ensuring that all patients can be treated and cured of their illnesses.";
fDesc[2] = "intuition in search of gold, fame and love. And remember, Fortune is smiling only at brave pirates!";
fDesc[3] = "select from from hundreds of content options to create a home page containing images, humour, facts, news & information, tools, quick-connect icons, user created quick-connect buttons, lifestyle articles, self-help technical information and many other features. Demo at http://www.gmwebtops.c om";
fDesc[4] = "going searching the biggest safe in the world. You have to help him overcome all the hardships and collect as many coins as possible.";
fDesc[5] = "text) so that you can use them in other applications.";
fDesc[6] = "Supports forunte file format. Supports multiple books.";
fDesc[7] = "friends in 30 levels filled with dangerous dinosaurs and more than a hundred goals to complete. For casual and hardcore players.";
fDesc[8] = "platform gameplay featured in 'Mr Nonsens Mad-Cap Humour', the fast arcadestyle gameplay of 'Nonsens Breakout', and the silly cutscenes of 'Nonsens Tennis'. With Mr Nonsens (not Mr Nonsense) as the maincharacter,Nonsense Trilogy is without a doubt one of the silliest games ever. Features stunning cartoon style visuals!";
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 = '...';
}
}