var fDesc=new Array();
fDesc[1] = "browse through all the game available and download demos, trailers, or the complete game. Once a game is downloaded through Valve's Steam, users can use Steam's multi-player service.";
fDesc[2] = "technology. Main features: Benchmarking Software - Show how many Frames Per Second (FPS). Realtime Video Capture Software - Fraps can capture audio and video. Screen Capture Software. Support for Vista and DirectX 10 games.";
fDesc[3] = "Internet performance and more. It provides a categorized collection of tools and utilities, including a disk cleaner, registry scanner, startup manager, uninstaller manager and more.";
fDesc[4] = "powerful engine that allows you to perform quick, complete or custom scans of your system. Also, you can update its database for having the most current protection. A must-have program.";
fDesc[5] = "standards), Popular (used by many tools), Tested and Reliable (it has been available for years), easy to use for the final user (windows installer), Multi-platform (Windows NT/2000/XP/2003), commercial support in the website of CACE Technologies.";
fDesc[6] = "It includes templates and tutorials to help you do your homework in Microsoft Office. Includes Microsoft Math for doing mathematical calculations including solving equations and plotting graphs, calculus, etc. Dictionary and Thesaurus helps learn foreign languages too.";
fDesc[7] = "users to share their processing power with the SETI@HOME initiative. It used volunteers' computers to analyze recordings of radio transmissions from outer space. However, nowadays, several projects can be added to the client.";
fDesc[8] = "5.01 ensures the security between host computer and gateway by checking that the MAC address from gateway to localhost and viceversa is correct.";
fDesc[9] = "erased showing the directories or files that use more space. Also you can see all the file extensions and which extension is the more used in your computer. WinDirStat runs in all Microsoft Windows platforms.";
fDesc[10] = ", rootkits, trojans, worms and malware in general, in all folders,diretories and all kind of files. The user can select the way of updating, the scan to be performed, the scanning schedule, and the paths to be scanned.";
fDesc[11] = ", eliminates clutter, automatically repairs errors and more. The System Mechanic interface displays these main features: Dashboard which analyzes and repairs problems, ActiveCare for automate maintenance, Tools which runs specific tools and Reports for feedback.";
fDesc[12] = "want to take with you and don't want to copy and paste it every time a change is made, or when you need your desktop computer and your laptop to have the same files.";
fDesc[13] = "homework done more quicker and easier It can evaluate solve and graphic equations, run matrixes, find standard deviations, means or variances. I'ts a powerfull College Scientific Calculator with nice graphing capabilities";
fDesc[14] = "variety of keyboard layouts. The program supports novice and expert users who wish to improve on their typing skills. It is appealing to adults and children alike by applying feeback techniques to keep the user interested in taking the next lesson.";
fDesc[15] = "been developed specifically to fully meet the specialized needs of online broadcasters.";
fDesc[16] = "collect bandwidth usage data and measure the speed of your Internet or any other network connection. NetWorx can help you identify possible sources of network problems, ensure that you don't exceed the bandwidth limits specified by your ISP, or track down suspicious network activity characteristic of Trojan horses and hacker attacks. The program allows you to monitor all your network connections or a specific network connection (such as Ethernet or PPP) only. The software also features a system of highly customizable visual and sound alerts. You can set it up to alert you when the network connection is down or when some suspicious activity, such as unusually heavy data flow, occurs. It can also automatically disconnect all dialup connections and shut down the system. The incoming and outgoing traffic is represented on a line chart and logged to a file, so that you can always view...";
fDesc[17] = "access your Personal Photo Gallery, keep an eye on your appointments, keep track of your Music Library, write down notes as well as having access to Breaking News, Instant Web Searches and Weather Information. There are lots of other things to add.";
fDesc[18] = "defragmented again! It constantly keeps an eye on your file system and makes sure that all the clusters are allocated properly, so your hard disks never get defragmented again. And all that without slowing down your computer’s performance.";
fDesc[19] = "tabbed interface. Search files, strip HTML tags and format text quickly. Use macros and collect text clips automatically on a paste board.";
fDesc[20] = "The System Information contains seven TABS for the Video, Audio, Network, Processor, Memory, Motherboard and BIOS information and Summary of all the hardware on the computer. The Boot Options allows the change of Boot order.";
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 = '...';
}
}