var fDesc=new Array();
fDesc[1] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[2] = "matchmaking and text and voice chats. Features game news and downloadable demos. When you install GameSpy Arcade 2.05, the program seeks for supported installed games in your computer, in order to allow you to play them online. If it finds nothing, it will later help you to find some.";
fDesc[3] = ", 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[4] = "maximum performance. Scanning process finds and removes in a safe manner the following malicious software (Malware): Trojan Horses, Dialers, Worms, Spyware, and Adware.";
fDesc[5] = "organize your information. When you use the program for the first time, it automatically finds all supported applications such as Microsoft Office or e-mail programs, so you can drag and drop any document to the application's associated button in PaperPort.";
fDesc[6] = "registry is of the uttermost importance for your computers performance. The more applications you install and uninstall, the more registry entries will be left on the registry, making it bigger, and thus, forcing your system to read a bigger file, which takes more time.";
fDesc[7] = "components in your PC easily. The program can completely remove any application along with the empty folders and registry entries. You can also see every detail of installed applications like installed location, version, developer name, developer home page and much more.";
fDesc[8] = "robots. If they touch you, you die. Your only weapon are bombs that you can leave behind. When they explode, they destroy everything in the near: walls, robots... or yourself, so be sure to be far from the explosions.";
fDesc[9] = "redundant information that slow down your PC and can cause hang ups and crashes. PC SpeedScan Pro 7.1 finds and eliminates harmful PC errors, restore your PC to its maximum performance, and stabilizes your Windows operating system.";
fDesc[10] = "your system running smoothly by finding and deleting invalid entries in your register, protecting your privacy by cleaning various common application traces. It also finds and deletes useless files, like temporary files, freeing up disk space.";
fDesc[11] = "key for your Windows XP, along with the installed Windows Version and Service Pack. You can then replace the product key, and the registration info, with whatever you want.";
fDesc[12] = "a world renowned collector of rare and unique items. His collection is almost complete, he just needs to find eight more items, to finish his life's work. Unfortunately he can't travel around the world as he used to do in the past. That's why he offers you to help him.";
fDesc[13] = "a house; then, you have to organize the yard sale to gain some money. The game basically consists in looking for hidden objects in messy scenes which are the different rooms in the house.";
fDesc[14] = "Windows operative system, has proved over the years to lack advanced options. Thus, when the user needs to do anything other than copy a file or paste one, he finds himself at a loss for \"actions.\"";
fDesc[15] = "your computer. FM goes in, songs come out. Getting started is simple. Connect your existing radio receiver to your PC using an inexpensive line-in cable, or use any available USB or PCI FM tuner (most Media Center PCs include one). Decide what stations you want to monitor and let Snaptune do the rest. Snaptune records directly to your hard drive. You get the music perfectly cut and no repeats. Snaptune shows you a list of songs as it finds them. You can sort, play, write, or transfer the music it finds to your iPod or other media player. Talk radio more your style? Snaptune can capture your favorite programs so you don't miss them. No other software does what Snaptune does. It's better than recording. It's better than time-shifting. It's local and current. It's more up-to-date than any online music store because it even finds songs that are'nt out yet, live sessions, and interviews....";
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 = '...';
}
}