var fDesc=new Array();
fDesc[1] = "period. The game starts with a team of US scientists who are sent to an island in the south of China to investigate a weird phenomenon but face a blockade by the North Korean government. Needless to say, that is one critical situation.";
fDesc[2] = "of time travel that we are used to. Instead, it is more of a mental, inner journey to the past of the main character's ancestors. You play him, the main character.";
fDesc[3] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[4] = "top-down action games, and this is not the exception. Similar to Alien Shooter, you now must fight Zombies, and it is somehow more gripping than the Alien Shooter games. If you like arcade action games, you'll love this.";
fDesc[5] = "experienced the pain that it usually is to view a huge image on your browser. Most times, they usually take ages to load, and, once they do, you are stuck with a huge image that you can't make any sense of.";
fDesc[6] = "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[7] = "providing them with an electronic notebook that not only replaces their paper laboratory notebook but incorporates MS Excel and Word, ChemDraw reactions, stoichiometry grids and spectral data";
fDesc[8] = "functioning demo, but the saving, exporting, printing, and copying functions are disabled. The demo will no expire, any data set can be used to create any graph types and all properties of any graph or drawn object can be changed.";
fDesc[9] = ", including linear, logarithmic, and probability scales, as well as several special purpose XY graphs and contour plots of 3D data.";
fDesc[10] = "by allowing the removal of focus blur after the picture has been taken. Developed by a team of imaging scientists, FocusFixer has been specifically designed to be easy to use. Simply download the software and start refocusing images within minutes. Available now for both Mac and PC platforms, download the trial and see how FocusFixer can work for you!";
fDesc[11] = "room measurement, loudspeaker Frequency Response analysis. Designed for acoustical technicians, sound engineers, scientists and students.";
fDesc[12] = "clear and user-friendly interface. Both real and complex numbers are supported. And, best of all, it is completely free!";
fDesc[13] = "and scientists to perform complex mathematical calculations. Users of CalculatorX 1.2 can input their calculations such as custom variables easily into the program’s familiar.";
fDesc[14] = "expressions and can handle most any function contained on a scientific calculator. An expression is entered in a form...";
fDesc[15] = "good and well-designed maps. It also includes new weapons and features such as a drivable tank. With all this new content, as well as a solid story, Invasion is one of the best single-player mods for Half-Life.";
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 = '...';
}
}