var fDesc=new Array(); fDesc[0] = "Tic Tac Toe by Ludei is a fun, fast, and intuitive game that you can play with your friends or against the computer. The objective is to get three circles or crosses in a horizontal, vertical, or diagonal line to win a game. You'll have to take turns, and mark the board with circles and crosses."; 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 = ''; } }