var fDesc=new Array(); fDesc[0] = "Polespo is a quiz-game, where words are to be guessed right by letters. The game comprises three levels, on each of which answers to questions about history, mythology, science, geography, sport games, nature and other topics are to be found. On each level one is to play against two rivals who through guessing letters right will take away your points or, having guessed the word right, will deprive you of the opportunity to continue the game. You will play for hours on end!For each letter in the word that you guess right a definite number of points will be added to your score, at the end of the game you will be able to send the result of your game to the site."; 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 = ''; } }