var fDesc=new Array();
fDesc[1] = "is a replacement for Windows Explorer’s copy functionality. It replaces Windows Explorer file copy and adds many features like transfer resuming, copy speed computation and control, improved copy progress display, copy list editable while copying, and an error log.";
fDesc[2] = "songs and albums with excellent audio quality, and all for free, as it is funded on advertising. In Spotify it is possible to listen to all sorts of music: from a rare song one might not expect to find, to the latest albums by popular bands and artists.";
fDesc[3] = "surround, dynamic boost, and Hyperbass. You can also change processing modes from a group of presets and listening environment between speakers and headphones.";
fDesc[4] = "mode, i.e the same history and strategy in real time. The big difference that shows the wisdom of the people of Microsoft and Ensemble study is that it adds 5 new civilizations and substantially improves the artificial intelligence.";
fDesc[5] = "Windows registry before and after some set of operations have taken place, It saves a snapshot of registry before and after the operations and then displays the difference neatly in a text file for you to compare and analyze .";
fDesc[6] = "graphix and physics delivering a new experience for the long time Counterstrike fans. Began as an experiment, now is an experimented success. People from all around the world play it online via STEAM.";
fDesc[7] = "versions. The main difference is that the game is done completely in 3D and allows a total control of the camera, and may change the angle of vision, getting closer and farther from the details of the adventure map as well as during the battles.";
fDesc[8] = "resize, move, create, delete, format and check partitions. The main difference with the Home edition is that creates bootable CD/DVD to manage partitions easier and faster. This version works on Windows 2000/XP/Vista 32 and 64 bit and Linux platforms.";
fDesc[9] = "changed between project versions, and then merging changes between versions. Features: Visual differencing and merging of text files Flexible editor with syntax highlighting Handles DOS, UNIX and MAC text file formats Unicode support Difference pane shows current difference in two vertical panes Location pane shows map of files compared Highlights differences inside lines File filters in directory diff Moved lines detection in file compare Shell Integration Rudimentary Visual SourceSafe and Rational ClearCase integration Archive file support using 7-zip Plugins Localizable interface via resource DLL HTML-based Manual";
fDesc[10] = "side by side, highlighting their differences. The interface is really simple with easy navigation by means of buttons and a drop-down list of lines.";
fDesc[11] = "automatically change the speed settings of your network. You can test the difference with the Netspeed Wizard to see the difference before and after application. It is possible for you to set these parameters yourself by using a setting called Fine Tune.";
fDesc[12] = "Super Fun Classic, Find the monkey, Leisure and Puzzle. This sequel of 5 Spots I is great as it not only brings new images to the classic mode game, but also completes the game with new additional game modes.";
fDesc[13] = "are very simple: the game will show you two similar pictures with smiley faces of several shapes and colors, and you have to tell the subtle differences between them.";
fDesc[14] = "pictures. It presents two pictures, which seem to be identical at first glance, but there are 12 random differences. The players have to spot the differences between the two pictures.";
fDesc[15] = "the five differences between them. The pictures chosen for this game are rather tricky, and differences are so subtle that you need a very keen eye for details.";
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 = '...';
}
}