var fDesc=new Array();
fDesc[1] = "Very original backgrounds. You'll find that the difficulty increases level after level till you'll think they are impossible to finish but even then you won't be able to leave the game for a long while!";
fDesc[2] = "coolest theme: Luna Royale. It includes the Aero cursors as well as system icons (My PC, My Documents...) and all the system sounds from Windows Vista.";
fDesc[4] = "interesting interface consists of two panes and a buttons toolbar with not really descriptive icons. Though its use is not simple for first time users, they can quickly get used to working with this application through the online help.";
fDesc[5] = "allows to run nearly all old DOS based games on modern hardware with any of the newer Windows versions. With DOSBox there is no need to worry about memory managers or free conventional RAM, but the setup of DOSBox is still a bit complicated. The configuration of DOSBox via textbased setup files might be difficult for beginners. D-Fend Reloaded may help and create these files for you. Additionally the D-Fend Reloaded installation package contains DOSBox (including all lanuage files currently available), so there is only one installation to be run and no need to link D-Fend Reloaded with DOSBox manually.";
fDesc[7] = "can open most image formats and resizes as necessary.";
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 = '...';
}
}