var fDesc=new Array();
fDesc[1] = "know instantly whether their computer's virus, spyware, e-mail, and firewall protection services are up-to-date. It combines a set of must-have security services with simplified access to McAfee´s security products.";
fDesc[2] = ", like Windows Media Player. Version 2.23 includes Subresync for fixing subtitle sync problems, SubMux for muxing SRT subtitles (and audio tracks) with AVI/DivX files, VOBSub cutter, Sub Cutter and Joiner.";
fDesc[3] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
fDesc[4] = "background with a soft curved design. In this case, we are talking about a green background with waves in different shades of blue and green.";
fDesc[5] = "inhabited with monstrous green creatures. The enemies are entraping you! The aim of the game is to clear out the gaming field from the green monsters and stay alive. Simple and clear gameplay, mystic heartfelt music - that's what you get with the game \"Alien Zap\". Download the game \"Alien Zap\" and play for free!";
fDesc[6] = "computer is idle, your desktop will transform into beautiful scenery different from anything you have seen before! Download a piece of nature to your screen today and get ready to relax in the most natural way!";
fDesc[7] = "caricature art. This software contains features such as caricature effects, comic rendering, green screen, face swap, head-on-body, comic rendering, text, clip part and many other novelty templates.";
fDesc[8] = ", working with colors (designers, artists, developers, etc.), an easy-to-use and helpful color picker tool. We can create and customize our own palette.";
fDesc[9] = "skills and knowledge. The farmland environments and vehicles have been simulated with such realistic attention to detail, and are so easy to navigate, that you will soon be enjoying a virtual taste of the good life.";
fDesc[10] = "configure up to 20 virtual desktops. Besides, switching from one desktop to another can be done easily by pressing configurable hotkeys or using your mouse.";
fDesc[11] = "farm grow as you invest the money you earn on each activity and bonus stages. Enjoy this fun puzzle game where you will be doing farm tasks.";
fDesc[12] = "Matrix adepts out there. Do you like the green lines of code? That’s exactly what you are going to get. But the only difference that I found with other similar products, is that in some moments, the green lines begin to move randomly, making curves, rays and more different effects.";
fDesc[13] = "manager. Build ecological houses, factories, businesses and parks to clean up the city. Upgrade each building to earn more money for rents.";
fDesc[14] = "animated outdoor scenes, accompanied by relaxing music, when your computer runs into idle mode. You can choose if you want the screensaver to play the built-in music, and the volume it will use.";
fDesc[15] = "get a well deserved rest from all the dreadful daily activities. You will be transported to a place that could be mistaken as paradise. You will find yourself in the middle of a beautiful valley somewhere in the mountains.";
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 = '...';
}
}