var fDesc=new Array(); fDesc[0] = "The goal of the Gold Seeker is to find all gold on a field with maximum points.
ou can select any cell by clicking left mouse button.
The digits which appear in the cell indicate the number of gold that a cell can "see" in all four directions.
Your points are decreased after every click on undiscovered cells.
When you find gold you get 20 seconds bonus time and if you find another gold in that time the remaining bonus time is added to your score."; 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 = ''; } }