var fDesc=new Array(); fDesc[0] = "Super TextTwist is a game that challenges the player to make as many words as possible based on the letters the program displays each time.

Super TwistText helps to practice vocabulary. The game is a letters puzzle where the letters are suplied by itself and invites the player to form words out of them. All the levels and supplied letters are good for creating known words. The game takes care of the truthfulness: there always are words that can be created using the displayed letters.

If player uses all the letters to form a true existing word, the game passes to the following level with another letter set and so on. Each higher level comes with more words to make, so it is more difficult to pass it over.

When player gets stopped (if ever), with no words to make, the game offers a hint when Twist is clicked by exchanging the letters position, so the player can figure out another possible word.

Game options give the possibility of playing with six, six and seven or just seven letter words, as well as the two playing mode: play timed out or play unlimited time."; 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 = ''; } }