var fDesc=new Array();
fDesc[1] = "remote computer is a linux/unix machine. It offers file manager functionality. It uses Secure Shell (SSH) and supports legacy SCP protocol. The graphical user interface is more like windows explorer, with drag&drop capabilities and icons.";
fDesc[2] = "line, focusing on an experience of intense and exciting race.GRID focuses 100% in the race. GRID will take players to amazing racing places on three continents.";
fDesc[3] = "installed in English or German. When you install TV-Browser 2.6.3, the first thing you have to do is to go through the Setup Assistant, in order to configure your system properly. It will check your Internet Connection and bring the list of available channels.";
fDesc[4] = "installment include the Aston Martin DB7, Ferrari 550 Maranello, and the Lamborghini Diablo SV. With the ability to download more exclusive vehicles from the Need for Speed website, there will always be something new to test drive. For multiplayer-enthusiast s, NFS3 supports up to two players with a Modem or Serial connection or up to eight players with a LAN connection. As if that wasn't enough, the already-stunning graphics have been improved, with an even higher level of attention to detail that includes blowing leaves, smoke from the burning rubber of tires, and amazing weather effects such as rain, lightning, snow, and fog. Finally, there's an all-new Hot Pursuit mode where you scorch the streets on either side of the law: Elude the fuzz as a speeding motorist or enforce justice from a police patrol vehicle. Surely, racing doesn't get any better than this.";
fDesc[5] = "superior playability. This demo allows you to race on two different tracks, with two different cars. The first car is a BMW 320Si and a Ford Mustang GTR muscle car.";
fDesc[6] = "launcher daily. I can't live without it. And I am glad to see applications like that for Windows. Executor is one of those applications. Executor allows you to start any application or document on your computer by typing its name.";
fDesc[7] = "UltraFractal 2.05 and FractInt, has a built-in compiler, alpha channel support, layer support and can create Quaternions.";
fDesc[8] = "surely also know that this planet is the number twelve in the solar system. What you probably do not know is that according to ancient Sumerian people, our planet formed part of Niburu.";
fDesc[9] = "window on your desktop. Like new Windows Vista Aero Glass.";
fDesc[11] = "authentic liveries.It has hundreds of custom animations. It also includes a huge printed manual and is fully licensed by Lockheed Martin and the Royal Air Force.";
fDesc[12] = "copy-away feature to copy selected MP3's in the Excel-Sheet to a different location.";
fDesc[13] = "screensaver shows this car make from different angles and familiarizes users with the appearance and design of the car make. The user can also receive visual information about some of the engeneering capabilities of the considered model.";
fDesc[14] = "show you gorgeous photographs of that awesome machine created by man: The Aston Martin. This is a sports car, and a luxury car, and a beautiful car, and more!";
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 = '...';
}
}