var fDesc=new Array();
fDesc[1] = "The present limit is 20 folders with 20,000 files each and no more than 4 GB in total. Very useful to avoid the hassle of transporting files in a USB drive.";
fDesc[2] = "transport passengers around a city, adjusted to a timetable on a planned route, obeying traffic rules, and taking care not to upset or injure your passengers.";
fDesc[3] = "screensaver presents a map of Middle Earth with a rotating Ring of Sauron that changes its size as it gets closer to you for a better view.";
fDesc[4] = "computer is idle, your desktop will transform into beautiful scenery different from anything you have seen before! Download a piece of nature to your screen today and get ready to relax in the most natural way!";
fDesc[5] = "converted into an electronic file). eBooks are a safe way to share, transport or even sell data that is copyrighted or is in need of a DRM (Digital Rights Management) encryption code. Mobipocket is a good program for anyone wishing to save personal writings in a safe environment.";
fDesc[6] = "MPEG2, MPEG4 SP/ASP, H.264/AVC*, 3GP. Its features include Real-time, high resolution MPEG-2 video playback at HD, Brightness control, Deinterlace vertical filter among others.";
fDesc[7] = "Transport Tycoon Deluxe or OpenTTD places you as a transport company owner and the target of the game is to be the most successful transportation company. OpenTTD works on Mac OS X, Linux, UNIX, BeOS, OS/2, and Windows platforms.";
fDesc[8] = "is a fresh incursion into the railway simulation genre and an opportunity for lovers of trains and stations to meet their requirements for entering the cabin of one of these transport vehicles.";
fDesc[9] = "used to deliver ordinary Web text and image files.";
fDesc[10] = "you to the sacred places of the Muslims. Probably you have heard of Mecca and the Kabbah, the place where you are supposed to go at least once in your life if you are a Muslim";
fDesc[11] = "can proficiently handle MPEG2 transport streams and videos. The features of this application include capability to create cent percent lossless DVD incorporating necessary menu and audio tracks.";
fDesc[12] = "meet the challenge of rescuing the main two characters from a mansion that they are trapped in, to win the game. In Archibald’s Adventure 1.0 the hero, Archie, can transport objects, ride on walls and ceilings and fly in a jet-propelled armchair.";
fDesc[13] = ", multiplex, and remultiplex MPEG-2 Transport and Program Streams as well as MP4 files, trim HD DVD, iPod, PSP and AVI files.";
fDesc[14] = "arrive to another base, you will be taken to the next level and do the same. Each level is pretty similar to the others, but colors are different.";
fDesc[15] = "database of transport facilities and storing information about clients. Save time and enhance efficiency with Transport Rentals!";
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 = '...';
}
}