var fDesc=new Array();
fDesc[1] = "Firefox 3. This changes were made to improve stability and web compatibility, provide user interface enhancements, and speed. Firefox 3 now includes support to resume downloads, and a better download manager. Its general appearance has been slightly improved, with some new icons.";
fDesc[2] = "features. SMS service helps you to send messages to people's mobile phones. I like Yahoo Messenger mainly because of its stealth settings. Games can be played on Messenger. All of these features make Yahoo Messenger the best Messenger software.";
fDesc[3] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[4] = "create shortcuts which enable you to launch applications, find contacts or take a picture in a simple, fast and easy way. Its easy to set up, and simple to use.";
fDesc[5] = "if necessary. It also shows you some important data about your hardware. SpeedFan 4.33 gets info from digital temperature sensors and internal chips of some components.";
fDesc[6] = "environment, using simulated or bridged hardware. It allows multiple machines that can handle most Windows, Linux, BSD and other OS variants. VMware Workstation is one of the best virtual machine softwares in the market.";
fDesc[7] = ", search for unnecesary files, manage the start up menu so you can change whatever you might need, shortcuts that have become invalid, check the disk free space in your HD unit, manage the add/remove programs list, etc. to get the best results on your system operation, perfomance and speed.";
fDesc[8] = "rest then as an icon in your system tray, showing you the temperature in the chosen location. If you double click over that icon, you can access some more weather information through several pages.";
fDesc[9] = "system, CPU, BIOS, graphic interface, memory, and so on. The program's interface is divided into seven tabs, each one giving comprehensive information on one particular item: CPU, caches, mainboard, memory, SPD, graphics, and program information.";
fDesc[10] = "services. This version has a updated system info module along with support for the latest CPU and graphics hardware, as well as the updated version of the Entech library that is used for detecting the clock frequency of the graphics chip core and memory.";
fDesc[11] = "show you all the details regarding your hardware, such as your motherboard“s manufacturer, model, serial number and BIOS; your processor“s manufacturer, version, voltage, frequency; how much memory your system has, and more.";
fDesc[12] = "PropertyPage is installed, where you can fully edit the ID3-Tag -An icon-handler for individual icons is included too -Tooltips, when you simply leave the mouse over the MP3-file (only with IE4.0 Active Desktop)";
fDesc[13] = "information, such as logins, passwords, bank account info, PIN codes and things like these. This information will be stored in \"cards\" that the program will keep with all the related info for a given entry.";
fDesc[14] = "This tool features standard, fixed-size maps with online traffic which can be used to calculate fuel. The fuel can be either calculated or the plane can be filled to the maximum quantity. The accuracy has never let the plane run out of fuel when airborne.";
fDesc[15] = "all functional elements of their computers. It can help in solving different problems with performance that happen from time to time. This tiny utility gives you the detailed information about all drives of your computer: hard drives, CD drives, DVD drives.";
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 = '...';
}
}