var fDesc=new Array();
fDesc[1] = "few users try to learn these important topics. But nowadays, it’s easier to get that information thanks to Berlac Advisor. This small utility will make a deep analysis of your PC, detecting all your hardware elements connected and all your installed applications.";
fDesc[2] = "guerrilla wars and the diamond struggles, is the setting for one of the most detailed and worked first person shooters ever. You play the role of a mercenary who is sent to Africa to kill a weapon's dealer who has armed both sides of a war that is killing a whole country.";
fDesc[3] = "cleaning / deleting unnecessary files. It can also be used as a tool to monitor your network usage. Realtime Disk, Network, Memory and CPU usage graphs are available. Not much features in the program. Anyway, rating 3.";
fDesc[4] = "and geographical capabilities using built-in user-friendly features for easy operation and exploration. The program is educational for users of all ages and for families with school-age children.";
fDesc[5] = "health status, errors and temperature of your hard disks. It also works with other storage devices such as memory cards, USB sticks, iPods, etc.";
fDesc[6] = "program is uninstalled, this is not deleted completely from your hard disk. There is where Uninstall Tool can help you to literally uninstall and delete all traces of the program you want to get rid of.";
fDesc[7] = "PC. The data appears classified in three big groups, Software, Hardware and Network. Within each of them there are several sections that specify details about the processor, motherboard, printer, operating system, video drivers, libraries, etc.";
fDesc[8] = "files formats supported by this software are as follow: MPEG1, PEG2, MPEG4, I tunes M4A, Matroska, OGG, OGM, Quicktime, RealMedia, WindowsMedia, WMV, WMA Microsoft RIFF (including AVI, WAV) Sound-only formats (AC3, AAC, AU, AIFF, DTS...)";
fDesc[9] = "All you have to do is select a program from the list of installed applications. It is not possible to remove all the registry entries and files, but this tool does a good job on this matter.";
fDesc[10] = "This program will detect, analyze and benchmark every software or hardware element in your system, letting you know its performance and capabilities.";
fDesc[11] = "The game features a charming turtle in its mission to save the bay where it used to live, from the invaders' attack. The story behind this game is really thrilling.";
fDesc[12] = "easy and friendly to do, just some clicks and the FTP server will be installed. The FileZilla’s GUI is very simple and all the information detailed is showed on the main screen.";
fDesc[13] = ", modules, Windows startup items, IE add-ons, system add-ons, services, drivers, opened files and installed programs in your operating system. Multilingual support and a very compact size make it a must-have system utility.";
fDesc[14] = "approach. Taking a lot from Firefox and the like, XYplorer adds a tabbed interface to the everyday use of file managers. Thus, you don't have to scroll through tens of windows to find the one that you know is somewhere.";
fDesc[15] = "information about your collection of favorite films. It includes a wide range of features for describing and sorting films. The application’s main window contains a toolbar, list of films and some tabs that provide detailed movies description.";
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 = '...';
}
}