var fDesc=new Array(); fDesc[0] = "In this game you try to remove all letter bricks from the pile of 50 letters as quickly as possible. Appears easy but you will need all your thinking skills and word power to beat the best scores.

RULES
- Make a valid word from adjacent bricks only
- A brick cannot be selected leaving an isolated brick above
- Word length must be 3 letters or more
- When you make a valid words, its letters are stacked in pile
- You can drop any number of single letters from the bottom of the pile onto an empty location below
- In HARD option the puzzle would be difficult but clock runs slightly slower (25%) than normal (EASY mode)""; 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 = ''; } }