var fDesc=new Array();
fDesc[1] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
fDesc[2] = "as virtual scrollbar, virtual buttons, fast access to applications and personal definition of tapping speed and sensibility.";
fDesc[3] = "III and its expansion pack, and it tells the player that the conflict between the factions is ideological, and not a merely good-versus-evil thing. Depending on your starting point, players will have to undertake different quests, face different monsters, and so on.";
fDesc[4] = "to be the easiest DVD player for Windows of all. The first part of every experience when it comes to PC applications is installation, and this program's setup is really easy and to the point. The user isn't prompted to setup or calibrate anything.";
fDesc[5] = "coordinates, so you can watch the sky on the screen as if you were using a telescope in real life. You can make the illusion more realistic adding atmosphere effects and views including the ground.";
fDesc[6] = "characters and excellent detailed 3D environments. The game comes with a step-by-step tutorial for first time players.";
fDesc[7] = "point, colorize and some color Efex Pro plug-ins. Besides you can add effects to any image, adjust levels and curves, apply vibrant colors, add grain and noise, change the image into black and white, compare with the original and work with multiple screens.";
fDesc[8] = "the extracted sound clip to MP3 format it is very easy to use. Just open the desired MP3 file, point to the starting point in the timeline and then select the part where it stops (ending part) and finally click on save to save the selected audio.";
fDesc[9] = "has several programs integrated; one of them is called Power Point. This application is used to make slide shows, but unfortunately not everyone has in their own computer this program. Power Point Viewer is a powerful tool that will help you to view these slide show!without having it.";
fDesc[10] = "developed by TimeGate Studios (instead of Monolith Productions developers of the original F.E.A.R.). Extraction Point requires the original game to be installed and played.";
fDesc[11] = "trip to a lighthouse on a small island. You will be able to watch the beauty of its light dissipating darkness and providing security to the nearby vessels. The lighthouse sits majestically at the top of the highest hill in the island, surrounded by rocks and waves.";
fDesc[12] = "to lead an armadillo (bent over itself, forming a ball) from a point in the space to another. For doing so, you will have to build structures that, combined with the gravity force, will allow the armadillo to get to the point you want. Each possible structure will have different properties.";
fDesc[13] = "about fluidity with less than 1-Gigabyte and a fast hard drive with lots of free space . It is too heavy. Boiling Point have good graphics and it is in the jungle where the graphic looks better. The sound effects are good but not excellent.";
fDesc[14] = "involved in an alternative reality in which Winston Churchill dies in 1931, eight years before the start of World War Two. Without the strong leadership of Churchill, Great Britain falls under the Nazi forces.";
fDesc[15] = "we will be able to enjoy some of the incredible features of this expansion pack of one of the best action games. This title is arriving at your computer with new weapons, new scenarios and the continuation of the plot of the first game.";
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 = '...';
}
}