var fDesc=new Array(); fDesc[0] = "This game uses a grid of Urdu letters and the player has to search words in this grid moving in any direction without breaking the link.

There is a separate box consisting of the SECRETWORD which is hidden from the user.

When the user selects the word from grid and if the first alphabet of that word is in the SECRETWORD, then that alphabet will be revealed from that SECRETWORD.

The player has to complete the game in the given 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 = ''; } }