var fDesc=new Array();
fDesc[1] = "Resident Evil is a very successful saga of video games (and movies too). I played Resident Evil 1, 2 and 3 and I really like them. The game was evolving with every release, improving graphics, sound and gameplay.";
fDesc[2] = "following the orders of a mysterious agency. The game includes more than 20 missions in all, which you'll play in a linear order, one after the other.The graphics of this game are great enough and particularly the sound has been improved so as to make it really enjoyable.";
fDesc[3] = "dimensions. Celestia runs on Windows, Linux, and Mac OS X.";
fDesc[4] = "entirely on stealthiness. The previous games' stories are mentioned during the development of this one, in which 47 discovers that he and his employer are being threatened by some other mysterious agency.";
fDesc[5] = "casting business. Hire as many actors as you can to make different plays and movies. Increase your stage and buy film artifacts to make your business succeed.";
fDesc[6] = "are spreading in all the sewage system because of some failures on the pipes of the system. Use your tools to fix the pipes and don“t doubt on use your weapon to kill some monsters as well.";
fDesc[7] = "private investigator with a new job: to find out who has stolen a treasure map from a museum. The first assignment that you have to accomplish, is to find some helpful tools from a list in order to help James in his investigation.";
fDesc[8] = "earn money. Each day of work you have to earn a certain amount of money to pass to the next day. You have to serve customers as soon as possible, otherwise they will leave, and you will lose some money.";
fDesc[9] = "detective with paranormal abilities. She can see ghosts and mysterious objects not visible to others. She runs a detective agency specialized in solving paranormal crimes and focused on banishing poltergeists from the city.";
fDesc[10] = "supernatural events and the constant pursuit of unnatural evil creatures. Larva Mortus is an upper view shooter in which we must fight all kind of evil creatures and monsters.";
fDesc[11] = "desktop. It is capable of retrieving real time weather information from more than 720 weather stations. The utility can display the stats as a minimalistic tray icon or as a more detailed desktop banner taking a bit of desktop real estate at the top of the screen.";
fDesc[12] = "information about the geographic regions and countries mentioned in the Scriptures and about countries that are important in the history of Christianity.";
fDesc[13] = "term care insurance. Absolutely no need to know HTML, web programming, scripting or other technical details.";
fDesc[14] = "real estate people for real estate professionals. Features Version 1.0.0. - Insert and manage contacts, properties, buyers.";
fDesc[15] = "for trying Collect Magic!";
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 = '...';
}
}