var fDesc=new Array();
fDesc[1] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[2] = "vector and raster images, so you can quickly mock up designs, or leverage assets created in other Adobe's applications. This version features a number of new Auto Shapes that you can drag onto your layout which randomly generate a new shape each time you click on it.";
fDesc[3] = "user can also choose between five levels of complexity - from Easy to Extreme. Each puzzle is generated randomly so there is an almost limitless selection.";
fDesc[4] = "so you can relax and let nothing be randomly decided. Streets and Trips features a complete set of maps of the USA. All the streets and routes are presented in detail.";
fDesc[5] = "you can relax and let nothing be randomly decided. Streets and Trips features a complete set of maps of the USA. All the streets and routes are presented in detail. You can define a start point and an end point, and the application will give you driving directions.";
fDesc[6] = "object of the game is to clear groups of cubes from the board. The player achieves this by shooting and pushing cubes against one corner of the board. When the cubes form chains of three or more cubes of the same color, they disappear.";
fDesc[7] = "you’ll have a shooter-like device with which you’ll drop balls. The colors of the balls to be shot varies randomly, so you have to select the best place to drop it according to the color.";
fDesc[8] = "randomly created levels, items and events. The player creates a heroic character, completes quests and battles through innumerable hordes of demons to advance through experience levels and branching skill paths";
fDesc[9] = "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[10] = "is responsible for creating collages randomly through a multitude of images that the program automatically downloads from the Internet.";
fDesc[11] = "realms. Apart from the card game, there are several quests, \"Wizard's Games\", and other bonus games that make it more interesting and enjoyable.";
fDesc[12] = "manage the screensavers you have installed on your PC. With this Screensaver Manager you will be able to preview all your screensavers and choose those screensavers you want to see on your monitor.";
fDesc[14] = "probably haven't seen before. A digital clock will be moving randomly across your screen, imitating drunken movements. The numbers will even shrink and bend as they move randomly around the screen.";
fDesc[15] = "many uses from drawings and lottos to classroom use.";
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 = '...';
}
}