var fDesc=new Array();
fDesc[1] = "automatic), precision adjustments of contrast, luminosity (brightness), color saturation, etc. as well as gamma correction on pictures too dark or too bright. Selection of several shapes: rectangle, ellipse, rhombus, triangle, polygons, etc.";
fDesc[2] = "platform. This driver will dramatically improve the touchpad scroll bar area. It also contains feature enhancements or changes that will help keep your system software current and compatible with other system modules (firmware, BIOS, drivers and software).";
fDesc[3] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[4] = "objects from still images.";
fDesc[5] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[6] = "3D visual tours. The program requires detecting Wi-Fi signals in the area near the PC, but the PC can use any type of Internet connection. It runs on Windows 2000 and Windows XP.";
fDesc[7] = "eliminate you and your base, and your objective is to defend the base and to survive yourself.";
fDesc[8] = "entire desktop, an active window, a predefined area, or a user-selected area of the screen for printing. Besides, you can edit the captured text before printing.";
fDesc[9] = "rain, and snow, combined with sound effects to produce realistic animated scenes for lakes, seas, waterfall or weather. You can create screensavers, build exe files, animated gifs, and avi files.";
fDesc[10] = "the previous version, showing action from Iraq to Nevada, in an alien invasion, where you will be responsible for the stopping of the plague.";
fDesc[11] = "GameTop.com. As said above, PacXon is a new and amazing version of the classic Pacman, but unlike others, in this case you do not have to eat all the colourful points you find in the maze, but cover an area with your trail.";
fDesc[12] = "secure military facility. Area 51 has shutdown a research facility due to a virus outbreak. They have initiated the quarantine process for the scientists and the personnel trapped there.";
fDesc[13] = "capabilities to transform the whole screen, the active window, or a selected area, into text, an image, or a table. All of these can be automatically stored in your clipboard for later use, while text and tables can also be exported to Word, Excel, RTF, CSV, or TXT files.";
fDesc[14] = "been proved to exist, but Midway has made a living of using it for their games. With BlackSite Area 51, the game becomes more intriguing, I guess. The game starts with your character looking for weapons of mass destruction in Iraq.";
fDesc[15] = "utilize functions for remote connection: Remote Desktop, Remote Shell, Commands, LAN FS Commander, and Task Manager. LAN FS must be running in the computers you wish to work with. Remote desktop must be activated in the System Properties for LAN FS to work.";
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 = '...';
}
}