var fDesc=new Array();
fDesc[1] = "your Web Browser and provide you with tools that will help make your searches more efficient. Ask Toolbar works with both Internet Explorer and Mozilla Firefox. There are different versions for each browser, though.";
fDesc[2] = "the movement of files considerably and it also adds several functions that are not present by default on Windows. When you are copying files with TeraCopy you will notice that you are given more information than before.";
fDesc[3] = "will probably notice when you open this application is the HUGE (it's not that big) banner at the bottom. I know this is a free application and all, but did they really need to blind me with flashing banners while I am trying to burn a couple songs?";
fDesc[4] = "operator compatibility as part of the alliance between Microsoft and Nortel. As the previous version, it requires a centralized server called Office Commuication Server 2007 which unfortunately isnt compatible with the 2005 version";
fDesc[5] = "beginning, but as you keep on advancing you will notice that the difficulty will increase. The game has great graphics, nice music and sound effects and is very funny and entertaining.";
fDesc[6] = "try to solve the puzzles and join the figures on their places. You will have to connect some twigs to get the original pattern.";
fDesc[7] = "soccer game that tries to deliver the most realistic graphics and playability to both the PC and next-gen consoles. This game has a few new modes with comparison to FIFA 08. The first one that you will notice is \"represent your country.\"";
fDesc[8] = "basic purpose: speed up your photo uploads to the Flickr Service. You will first notice that the application is really sleek. The main change in comparison with the old Uploadr is that this one features drag-and-drop like it has never before.";
fDesc[9] = "comes with a modest price and works well. The program works with all types of connection modes and makes your LAN faster.";
fDesc[10] = "drive so we get a better performance. If we notice that our computer goes very slowly and we do not have an excess of programs or application, we may need to defragment the files in our hard drive and that is precisely what this program is aimed for.";
fDesc[11] = "modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[12] = "notices or news, FeedReader is like this application. In this way from unique software and without opening different websites you can look the last news and access to what you need. It’s fast, easy and a friendly tool.";
fDesc[13] = "modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[14] = "find yourself driving an spectacular sport car. An important feature is that it's not only a racing game, you will notice that it's an innovating and advanced racing car simulator with tools for understanding and tuning vehicle physics.";
fDesc[15] = "crashes. No modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
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 = '...';
}
}