var fDesc=new Array();
fDesc[1] = "spider man whose mission is to stop Electro from taking over the world. Throughout the game, user swing from building to building, picking up power-ups, beating up thugs and hired goons, and every so often confronting a boss who then proceeds to whip the living tar out of them.";
fDesc[2] = "flying objects in the space. Invadazoid 1.0 has got several game modes (invasion, survival, classical and boss). Each one has got different rules and strategies.";
fDesc[3] = "Hollywood, and film your own movies. There are many tools that the user is given to successfuly complete a movie. For example, you can create your own scenarios, with several different items, like cars, backgrounds, houses, etc.";
fDesc[4] = "PC and preserving your privacy. The application completely deletes private data such as cookies, applications history, temporary files, autocomplete forms and passwords, swap files, among others.";
fDesc[5] = "island home, Pakoombo, that will be sold by the evil Mr. Lyar. You will assist Cathy and her brothers to find a hidden treasure to save their home.";
fDesc[6] = "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[8] = "approaches you, you can quickly switch to your 'Work' desktop.";
fDesc[9] = "and any other confidential information.";
fDesc[10] = "lot of system resources for its performance. This application has a very simple and easy-to-use interface. Also it allows automatic switching between selected wallpapers in time intervals defined by user.";
fDesc[12] = "long other user can do on the computer and offers adjusted powerful tools combining with user-friendly multilingual interface.";
fDesc[13] = "console into a full portable multimedia center, to enjoy all your multimedia contents anywhere you go, along with your favorite games. Synchronization is extremely easy.";
fDesc[14] = "decide who, when and how long can access your computer or when can not access your computer. Access Boss can be useful for commercial use like in IT departments, small business or for home use. It can also work as parental control software that can stop your children playing games all the day.";
fDesc[15] = "monitoring program, powerful log analyzer and deployment utility. It takes minimal system resources and writes logs in common database formats.";
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 = '...';
}
}