var fDesc=new Array();
fDesc[1] = "you, as detective Nancy Drew, to join the case, to infiltrate a dangerous crime syndicate and catch this phantom thief before he or she destroys the heart of Venice!";
fDesc[2] = "technology, the copied websites look and feel just like the online versions. SuperBot is fast, powerful, and very easy to use.";
fDesc[3] = "ride personalized themed choppers, challenging their racing skills on a variety of missions and earning style points to unlock new bikes, along the way.";
fDesc[4] = "playing them! FastCap will not slow down your PC much even when you record at high FPS. FastCap's video resolution is optional";
fDesc[6] = "them) in just a few lines of simple code. But this isn't it. BrownRecluse lets you scan and manipulate the data.";
fDesc[7] = "add-on has 13 military planes like F/A-18 Blue Angel, F-14 Tomcat, S-3 Viking, A-7 Corsair II, A-6 Intruder, B-2 Spirit, A-10 Thunderbolt II, OH-58D Kiowa Warrior, KC-135-R Stratotanker, CH-46E Sea Knight Helicopter,";
fDesc[9] = "access, Rip Flash from the NET, encode WAV/MP3 music files FREE + more.";
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 = '...';
}
}