var fDesc=new Array(); fDesc[0] = "Quiz-Tac-Toe is a small game that features a very addictive combination - the classic 'tic tac toe' game with trivia questions. As you must surely know, Tic tac toe is a game that needs two players, one using an ‘X’ and the other a circle ‘O’, who will take turns to strategically place their pieces trying to form a straight line, either vertical, horizontal, or diagonal. Quiz-Tac-Toe differs from the original gameplay in that for a player to place his/her symbol on the grid, it is necessary to give the appropriate answer to a question, otherwise the player misses the turn, making the place available for the opponent. Questions cover different themes of popular knowledge, like geography, astronomy, music, literature, and history.

The game's interface is a small blue window providing the necessary options to play without any hindrance. One of the most interesting features is the chance of creating our own questions and answers and add them to the game using the Question Creator. With this program, we can easily create new questions and answers and refresh the list. Quiz-Tac-Toe is freeware, safe to install, and is a lightweight application. It is a fun and addictive game that will entertain you whenever you have some free minutes."; 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 = ''; } }