var fDesc=new Array(); fDesc[0] = "The goal of Miners is to dig tunnels that lead the Miners to the gold, then back to the starting position again.
The miners are simple creatures:
-Miners will walk straight forward until they hit a wall or get bored.
-When a miner hits gold, he will pick up a chunk of the gold, but only if he isn't already carrying some gold.
-If a miner carrying gold enters either starting platform, he will drop the gold there.
-When a miner faces a steep cliff in front of him, there's a 66% chance he will try to jump over it.
-After a miner has hit a wall and changed direction, there's a 66% he will jump back in the direction he came from.
-A miner that falls more than 100 pixels will die."; 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 = ''; } }