var fDesc=new Array();
fDesc[1] = "drives and play CDs & DVDs without the need for the physical disc. Something great is that Daemon tools is able to emulate nearly all known copy protections on the market today and the only thing you have to do is a click and the autorun dialog appears";
fDesc[2] = "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[3] = "in the latest versions. The emulator is capable of running Playstation 2 games at decent frame rates and it emulates every single feature of the original PS2 console.";
fDesc[4] = "version brings improvements in the motor of handling of images (ISO, NRG, etc…) new languages available, and neat errors of the interface. In addition now it comes frees of adware (Publicity), that is not little.";
fDesc[5] = "CD and DVD content without using the physical disc -- just click on a desktop icon to launch a virtual CD with access rates up to 200 times faster.";
fDesc[6] = "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[7] = "applications that run on certain devices. This toolkit consists of build tools, utilities and a device emulator. It must be ensured before installation that you have an appropriate Java SE environment preinstalled in your system.";
fDesc[8] = "code seen on computer screens in the movies. Watch the code or glyphs falling down rapidly through the screen in aleatory patterns. The screensaver displays also well known dialogs from the films but this is optional.";
fDesc[9] = ", based in the Z80 processor, created by Microsoft in the early 80´s. This \"standard\" was nearly unknown in the United States or England, but was widely used in Europe and Latin America. blueMSX allows you to run programs created for that architecture through your PC.";
fDesc[10] = "These functions are available in a user friendly graphical interface. The program helps the user to view the internal microcontroller architecture. It has features such as FLASH program memory editor, variable simulation rate and a powerful PIC basic compiler.";
fDesc[11] = "typing it, by using an Explorer-like entries manager. Since this application is a frontend for the DOSBox emulator, you´ll need to have it installed in order to use it. If you don´t have the emulator, you can download it from http://dosbox.sourcefo rge.net.";
fDesc[12] = "emulate a physical CD device with the advantages of a hard disk. The program will allow you to use up to twenty virtual CD drives at the same time, and you will also be able to share them over a network.";
fDesc[13] = "includes some tutorials for beginners. Emu8086 runs programs like a real 8086 microprocessor in step-by-step mode, showing registers, memory, stack, variables and flags. The instructions can be executed in forward or reverse direction.";
fDesc[14] = "Delphi 2005 Personal Edition and is released under a BSD license which means its free AND you can take the source code and do whatever you want with it, as long as you leave my name in it somewhere.";
fDesc[15] = "program designed to play those games in your PC. With good controls and a bunch of features included in the game, this is a good emulator for all Intellivision fans.";
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 = '...';
}
}