var fDesc=new Array(); fDesc[0] = "Diamond Caves is based on the idea of the Amiga game Emerald Mine (by Volker Wertich). The main goal in this game is to get out of a cave using the blue exit. For the exit to open, you have to collect a specific amount o Emeralds.

This can be quite tricky because you are not alone in the cave, there are a few different enemies as well as special items such as doors, keys, acid pools, bombs & dynamite"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }