var fDesc=new Array(); fDesc[0] = "A strategy game, the goal of which is to capture the entire field. First, you are asked to choose a map and the color of your region. To make a move in the game, first you need to click on your region, then on the enemy's region, provided that they border each other. Then the great random comes into play, and depending on what the dice show, the winner is determined. The more bones in a region, the higher the chance of capturing enemy territory. In case of victory, the cubes are moved to the captured region, leaving one cube in the same place; in case of defeat, one cube remains in the place of the selected region. When you decide that the attack is no longer worth it, press the move transition button."; 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 = ''; } }