var fDesc=new Array(); fDesc[0] = "The Good old Tic Tac Toe or XO if you like to call it, with some colorful graphics. Put your X and O on the 3x3 board and try to win against the computer. It a colorful and a relaxing game no matter your age. Win if the player has two in a row, play the third to get three in a row."; 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 = ''; } }