var fDesc=new Array();
fDesc[1] = "that your faction dominates the empire. You will have to choose between three factions: the Brutti, the Julii and the Scipii. These families had a very big influence in the ancient Rome. Each of those families have different goals.";
fDesc[2] = "of UltimateDefrag guarantees maximum system performance not just in the moments after the defragmentation has just finished, but also thereafter.";
fDesc[3] = "Pursuit in three different modes: Solitaire (you against the machine), Time Attack (you against time) and 1 to 4 players, to play against other humans.";
fDesc[4] = "execute realtime DNS and PING test, while making subnet creation and network worksheet generation simple and easy. It's an indispensable tool for almost any network administrator.";
fDesc[5] = "interface, which makes it really easy to use even for beginners. This version features some improvements and bugs fixes including the addition of whois servers for .in, .ie, .me, .tel, and co.nl domains.";
fDesc[6] = "to find your desired domain names quickly and easily. The built-in database helps you to search from generic top level domains and from country code top level domains as well.";
fDesc[7] = "you to manage your notes via diary and to create reminders. Events (alarms) sent e-mails when raised.";
fDesc[8] = "experience from music recorded in mono.";
fDesc[9] = "with freedb CDDBP (submit & query). LCD-like display. A built-in utility permits you to organize your discs in a local database.";
fDesc[10] = "Email Verify, Finger, Name Scan, plus 6 others. Also, NetGadgets provides 6 Local Information Network tools.";
fDesc[13] = "features include automated check, customizable fields display, multiple projects, custom color coding, SMTP and proxy support";
fDesc[15] = "frequency domain. Graphical, block oriented user interface with more than 80 basic elements. Creates time, Bode, Black-Nichols and Nyquist diagrams.";
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 = '...';
}
}