var fDesc=new Array();
fDesc[1] = "enjoy this challenge in a battle against the thiefs of your treasures. Collect your treasures and ancient pieces to rest your soul and enter the after life.";
fDesc[3] = "that goes from 1964 to 1973. This title brings different flyable aircraft and weapons that can be used in several missions such as reconnaissance, strike and air support. The game engine is the same used in Strike Fighters: Project 1.";
fDesc[4] = "set several degrees of warnings and you can also share your experiences by uploading your results to our database.";
fDesc[5] = "combination of lethal and grace. Aerosoft brings the flying experience to you with close to reality effects in this FSX. Fly the A, AM and C models with engines from General Electric and Pratt & Whitney.";
fDesc[6] = "role jet fighter aircraft. Designed as a lightweight fighter, it evolved into a successful multi role aircraft.";
fDesc[10] = "collection of the most widely used fighter and attack aircraft. There are various paint schemes included in the add-on like F-14 Tomcat, F-15C Strike Eagle, F-16 Fighting Falcon and F/A-18 Hornet.";
fDesc[15] = "files to the PSP, and generate thumbnails for the videos.";
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 = '...';
}
}