var fDesc=new Array();
fDesc[1] = "played on Windows, is, arguably, the most stable and best working Nintendo 64 emulator out on the field. In order to play actual commercial games one has to have a ROM file for the game that is going to be played.";
fDesc[2] = "stable and you have a lot of configuration options. Versions 1.3x and below have a different sound engine that is most accurate with the real SNES. Snes9x is good option to play SNES roms.";
fDesc[3] = "shares, remote servers, CDs, movies, files and whatever you could possibly have and lose. Whereisit? is suitable for both the novice and the advanced user and there are a lot of languages available for the user to choose";
fDesc[4] = "It supports all Windows operating system, from 95 to Vista. It has a friendly interface and it“s easy to use even for average users.";
fDesc[5] = "browse inside archives (ZIP, ARJ etc), make searches, automatically extract descriptions from documents and much more.";
fDesc[6] = "CD-ROMs obsolete, copy the contents of the CD-ROM to your Hard Drive and run the CD from there.";
fDesc[7] = "cartridges. GGPO can be added to existing games to provide network gameplay support to the old consoles“ games. The program uses a peer-to-peer topology to run a complete copy of any available game for each player, transmitting controller inputs over the network to keep these copies synchronized.";
fDesc[8] = "snapshots of your disks, imports descriptions and thumbnails, and allows for offline access, searching, reporting, organizing...";
fDesc[9] = "More than 60000 games can be fixed. All consoles, arcade, computers and handheld are available.";
fDesc[10] = "well as delivering a complete set of recording applications and optical drive testing utilities to your computer. This program is provided with a graphical user interface that displays the command buttons for its featured applications in a toolbar for your convenience.";
fDesc[11] = "PC, navigate through the CD-ROM, and listen to any sound by clicking on it. CDxtract also displays detailed informat...";
fDesc[12] = "autorun programs with point and click ease...";
fDesc[13] = "to music and sound support.";
fDesc[14] = "contents of CD-ROMs and list the contents oneither the front or back cover. You can add and resize your own graphics, change font characteristics, and justify text and graphics as you see fit. A nice sampling of custom graphic backgrounds and borders is included for easy incorporation into your design.";
fDesc[15] = "presentations to movies. You can include your own splash screen graphic, custom CD icon, sound effects, custom window sizes, and 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 = '...';
}
}