var fDesc=new Array(); fDesc[0] = "This is a classic word scramble game. In this game you will be given a set of scrambled letters, and you are required to rearrange them into a meaningful word. If you are stuck, you can click the hints button to get the meaning of the word.
You can play the game online, or you can download and install it in your computer so that you can play it simply by clicking an icon on your desktop."; 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 = ''; } }