var fDesc=new Array(); fDesc[0] = "In this word game you try to make words from a set of 7-9 letters. This game can be played in time limited scoring mode, or without scoring with unlimited time.

Main features of this game are:

-Three levels of English. Can use custom dictionary as well. Your dictionary should contain the list of words, sorted alphabetically, in a text file.
-Word lengths can be limited to 7, 8, or 9. Minimum word length is 4.
-Can get hints and meaning of words
-Provides words statistics
-Numerous colour schemes"; 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 = ''; } }