var fDesc=new Array(); fDesc[0] = "Clear the game board without exploding mines in the game MineSweeper 2014. Here you are to revive reminiscences about the old game MineSweeper created in 1960. Enjoy the amazing variation of the game and try your luck in 3 levels of difficulty. Some randomly selected squares, unknown to the player, are designated to contain mines. You must clear the game board without detonating them."; 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 = ''; } }