var fDesc=new Array();
fDesc[1] = "to place a package and you can rotate it by right clicking. When you place a package, you have to avoid leaving “holes” (spaces of one cell) since they will count against you. You won’t be able to fill them since there are no packages of one cell.";
fDesc[2] = "Commander Sheppard, a soldier of the elite fleet of the Alliance of Systems (An organization that agglutinates all the old nations of the Earth).";
fDesc[3] = "more than 40 U.S.cities from coast to coast, Canada and Mexico. Your goal is to build a fleet, deliver the goods to make money, and finally defeat the competition.";
fDesc[4] = "given the task to captain a submarine which is a part of the North-Atlantic fleet. Your orders are to patrol the seas. Every patrol mission will determine the outcome of your whole career.";
fDesc[5] = "clearly more than a game about blowing ships out of the water; it's an well-achieved mixture of action and real-time strategy. In the game, the player can both command his fleet assets and assume control of any one of them at will.";
fDesc[6] = "DemonStar. The main difference between this game and its predecessors is that there are new enemies and new weapons in it. \"Secret Missions 2\" has been developed using an enhanced version of the original DemonStar engine, with better graphics and sound effects, more new levels and a better soundtrack.";
fDesc[7] = "incarnation of the classic board game with some interesting variations. Battleship is the classic game of naval strategy. You will take turns trying to find your opponent’s fleet and blast them out of the water.";
fDesc[8] = "However the journey is filled with obstacles which you must overcome or even use to accomplish your mission.";
fDesc[9] = "the information related. This information refers to costs, fuel consumption, mileage, drivers, parts, services, maintenance schedules, and else. The interface is very intuitive and neat. The functionality is rather limited but the price is very competitive.";
fDesc[10] = "application can keep a record of your vehicles and your drivers, and much data about them. You can add any type of vehicle to the database. All you need to do is add a vehicle class for each vehicle and add a model number.";
fDesc[11] = "calculate maintenance due for a vehicle and issue reports, detailing the required maintenance due. When maintenance is performed, a detailed entry is recorded to the vehicle's history report.";
fDesc[12] = "that users of the Microsoft Flight Simulator FS2004 can add to their virtual flight simulator programs. The program includes six life like models of airbuses in the colors of Air India, Air France, Virgin Atlantic, Air Canada, and British Airways liveries";
fDesc[13] = ", FS2000, and FS2004 programs providing users with 6 additional virtual airbus jumbo jets. The Fly The Airbus Fleet for FSX 1.0 bundles 6 virtual jumbo jet aircraft with 14 liveries that are modeled with true to life textures and colors";
fDesc[14] = "features customer-defined PM schedules, flexible work orders, fuel logging, complete expense tracking, and much more. Try it FREE for 30 days.";
fDesc[15] = "activities for vehicles in a car fleet. Unlike the network version, this edition is usable only in one computer station at a time and supports one user. The sections of the program are: Vehicles, Services, Parts, Personnel, Vendors, Options, Reports, and Help.";
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 = '...';
}
}