var fDesc=new Array(); fDesc[0] = "Super WHATword is a puzzle games where you need to rearrange letters to form words.

You have to click on a letter in the grid, and then in another one, to swap its positions and form words.

You can play in Action (timed) or Puzzle (untimed) mode.

When you form a word, the letters will disappear and its place will be occupied by new letters. Sometimes they will form a new word, but in such case the word won´t be detected, you´ll have to change something for it to be counted.

You´ll have some difficult letters that will reward you extra points. There is an indicated Super WHATword that you´ll have to form using the golden letters that will appear during your game. When you use a golden letter in any word, it will be added to the Super WHATword.

There is also a WHATword that you need to form. You will get to the next level when you spell the WHATword.

You can use the BLAST button to scramble the letters in search for a better combination. You can only do this a limited number of times."; 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 = ''; } }