var fDesc=new Array();
fDesc[1] = "blue flag), avoiding unseen mines, snakes and ghosts. It is a test of both memory and luck.";
fDesc[2] = "there’s a view of the underlying earth from where you have to grab gold and other treasures. Click the mouse button to grab stuff. You need to help the miner to get enough money to go to Las Vegas and gamble.";
fDesc[3] = "puzzle game, featuring hi-res graphics, awesome sound effects, and a brand new killer soundtrack, along with the classic gameplay Diamond M";
fDesc[4] = "features, this patch offers a multilevel secret place to be used as refuge; a garden where various poisonous plants grow; a cattle shed for vampires; a mine to get gold from and diverse upgrades for the house, which allow the utilization of new furniture, ornate and more.";
fDesc[5] = "to move, clicking over it with your left mouse button. Then you´ll have to click in the spot that indicates the movement of the mine. Finally, you´ll have to activate that movement by clicking on the activating spot.";
fDesc[7] = "Mine is basically a collapse/match 3 game with fine graphics and quite enjoyable gameplay, specially at higher levels.";
fDesc[8] = "game to uncover some mines within a place of squares. You uncover a square by clicking and if its a number, it shows the total number of mines in the eight squares that surround it. You mark a flag to show that you suspect a mine. After indicating the number of mines needed, you win !";
fDesc[9] = "mode (real-time action!). Diamond Mine Deluxe is a gem of a game! Master the gameplay modes Normal and Time. Go Deluxe and play on your PC any time you want, whether or not you're online.";
fDesc[10] = "four caves with twelve levels each, all more or less the same, with different levels of difficulty, and exciting bonus levels. It features a nice background music and cool graphics.";
fDesc[12] = "of the same color. This make them disappear from the board, thus gaining points and letting new random jewels fall down. The game features decent graphics and a suitable music and sound effects.";
fDesc[13] = "The game is really fun, especially if you want to spend and share good moments with friends in front of your PC. Your mission is to guide the wagon through the correct paths in order to collect coins and earn points.";
fDesc[14] = "end of line characters, ASCII-EBCDIC,OEM-ANSI, add/remove lines/columns, sort,split, join, database extracts,VBScript";
fDesc[15] = "journey to a far away place, up in the mountains, and deep in a forest. I don’t think many people are aware that in that place they can find a gold mine. Probably the owner has done a good job at avoiding spreading the word.";
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 = '...';
}
}