var fDesc=new Array();
fDesc[1] = "pretty fast way. Besides, it uses a minimal amount of resources of your system in comparison to other programs of this type.";
fDesc[2] = "automatic), precision adjustments of contrast, luminosity (brightness), color saturation, etc. as well as gamma correction on pictures too dark or too bright. Selection of several shapes: rectangle, ellipse, rhombus, triangle, polygons, etc.";
fDesc[3] = "very good partition manager considering its capabilities. It has all the components / functions required for a partition manager. It gives a wizard like interface when the program starts. There is also an advanced version for experienced users.";
fDesc[4] = "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] = "allows many operations over different formats and layers of mapping information. It can open almost any mapping file format for modifying or simply converting it. Global Mapper runs on Windows 98/NT/2000/ME/XP (32-64 Bit) / Vista (32-64 Bit) platforms.";
fDesc[7] = "asks you to reboot your computer. Quite often, no reboot is really needed. WhyReboot checks the pending file operations that will occur after rebooting your computer, helping you to evaluate the convenience of rebooting your computer.";
fDesc[8] = "great FPS action, with beautiful maps, great weapons and lots of accessories. If you are a special forces fanatic, or you are into the FPS scene, give this game a try.";
fDesc[9] = "religious and ethnic violence a joint force of western countries is coming down to the country to control the situation. The game can be played online with up to 150 players or you can play it on LAN with about 64 players.";
fDesc[10] = "Change Operations. Many integrated features such as Bookmarks, Pattern Coloring, Data Inspector, attributes and many more functions makes your file editing task very easier.";
fDesc[11] = ", sound operations etc. AVI toolbox is utility that splits the audio and video separately for video or audio based operations. It provides the convenience to burn the video files into CD with the help of the respective burn software support.";
fDesc[12] = "mathematical operations in a game-like fashion. Through simple mathematical exercises, Math Educator can help school age children to improve their marks at school, and give them a more agile mind to solve mathematical operations more quickly.";
fDesc[13] = "makes it possible for developers, designers, bloggers, etc., to easily create and manage MySQL databases. The program's interface proves to be very smart and user-friendly, with many tools and helpful wizards.";
fDesc[14] = "lets the user to assign hotkeys to use in Windows. Set the timer to restart, log off, hibernate, stand by or shutdown. It overrides any active program forcing it to close.";
fDesc[15] = "Partition manager is really easy to use. It provides a nice interface. We do all the operations virtually at first. After we complete all the changes that we need to make to our hard disk, click \"Apply\" and the rest will be done by the program.";
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 = '...';
}
}