var fDesc=new Array(); fDesc[0] = "Renju World is a fresh replica of the old popular TicTacToe game!
In this two-player game your golas is to create a line of 5 stones on a square grid. The game is a draw if there is no enough spare grid squares to complete a row of 5 stones as a direct line. Two players move stones of their chosen colors. Both the players alternately make one move each time. A move consists of the putting of a stone on one of the intersections of the board. The winner of the game is the player who will be first to attain five in a row. Game requires attention and smartness! Are you up for the challenge?"; 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 = ''; } }