var fDesc=new Array(); fDesc[0] = "You play VS the computer on a board. Each move is timelimited and cost energy. The three first moves, you play anywhere but, after, you play only near yours pieces. You must capture opponents piece or win surface to gain more energy. At each turn, ALL the opponents piece that areconnected with yours pieces are seized by you and vice-versa. You win surface when all the pieces are the same color, but you can loose it. To challenge the game, some specials pieces appear randomly on the board ! The winner is the player with the more SURFACE."; 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 = ''; } }