var fDesc=new Array(); fDesc[0] = "Ultimate Tic-Tac-Toe is an advanced form of Tic-Tac-Toe, where each square in the 3 x 3 board contains a smaller Tic-Tac-Toe game. In order to put your X in a square on the grid, you must win the mini-board game that square contains. But there is an additional complication: you don’t get to pick which board in the 3 x 3 grid you get to play on. That is determined by your opponent’s previous move. Whichever square he played on, that is the board you must play on when it’s your turn."; 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 = ''; } }