var fDesc=new Array(); fDesc[0] = "Wordgrid is a simple and addictive word game similar to the classic Scrabble, where we have to form words with the letters given, with the objective of getting the highest score possible. Wordgrid is extremely easy to play: we only have to click on adjacent tiles to create valid words, until no more words can be formed with the remaining tiles. Words will have a different score according to their length and the value of their letters. Besides, points awarded will vary according to the skill level chosen, which may be easy, normal, or hard.

The game interface is very simple, with plain, modest graphics, no music nor sound effects, so that all of our concentration is focused on forming words. We will only see a grid, with 32 tiles, a button to shuffle tiles when there seems to be no chances of new words, plus another button through which we can end a game.

The game has a default American English dictionary, but there is a very interesting option allowing us to add new dictionaries, in other languages. From the developer site, we can download Brazilian Portuguese, French, Spanish, or Afrikaans dictionaries, among many others. These dictionaries are available at no cost, and to install them we only have to paste the ADM files in the dictionary directory.

This game is free for personal use, and is only 1.33MB, so it requires very little from your system. All in all, it is a great option for those who love word games."; 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 = ''; } }