var fDesc=new Array(); fDesc[0] = "The objective of the game is to help the mole gather gold nuggets and destroy enemies . Each level requires gathering a certain number of gold nuggets and/or destroying a certain number of enemies. Panel in the right corner displays the objective for the current level. On his path, the mole will encounter gems and minerals , gathering which will generate additional points. The total amount of points and lives left is displayed at the bottom of the screen. The best players have a chance of making it to the Hall of Fame."; 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 = ''; } }