var fDesc=new Array();
fDesc[3] = "effects, equalize, analize, import and export audio tracks in formats wav, aiff, mp3, ogg vorbis, flac, mp2. Its Available for Windows 98/NT/XP/Vista, Linux/Unix, Mac OSX.";
fDesc[5] = "Diagnostics module - Benchmarks - Tweaking features - Web links - Favorite pages - Built-in hardware database - Full Windows XP compatibility - Full Windows Server 2003 compatibility - Fully localized user interface.";
fDesc[8] = "collect antique artifacts for the Titanic Museum. The player needs to dive into 17 ship locations for clues that are deeply hidden but will lead you to the ultimate artifact: The Crown Jewels!";
fDesc[9] = ", Faye, has been locked away by Lilith the Fairy Queen of Dreams. She needs your help to navigate the puzzles to discover the origin of the fairies, hunt for dream jewels, seek advice from the foliage, and find your way out of the Eternal Maze.";
fDesc[10] = "virtually convert your computer into a keyboard allowing you to play musical notes, chords and drums. The interface can be greatly improved, just a tip for future versions. Very hard to play piano from the computer keyboard and it’s very natural since they weren’t designed to do that.";
fDesc[11] = "(MAC) Address of your Network Interface Card (NIC) irrespective to your NIC manufacturer or its driver. It a very simple & easy to use utility that gives you enough information about the Network Interface Cards (NIC) installed on your computer.";
fDesc[12] = "motherboard, CPU, hard discs, etc.) voltages and fan speeds. It provides a lot of info regarding your hardware components with graphics that show the current temperatures, fans and voltages";
fDesc[13] = "interface´s icon will allow you to renew the IP addresses. The \"Interfaces\" tab will allow you to enable or disable NIC administratively. The program works fully under Windows 2000, Windows XP and Windows Vista.";
fDesc[14] = ", WindowsNT V4.0 and Windows2000.";
fDesc[15] = "images by scanning each posted message. When a message contains image content, the image is downloaded to your computer.";
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 = '...';
}
}