var fDesc=new Array(); fDesc[0] = "In this word game you are given a set of three letters and two blanks in between. You are required to fill the two blanks and add letters before the first letter or after the last letter to make a valid word. Once you make a word, letters used in the two blanks become part of the word to be found next. The game ends when there are no valid words are left corresponding to the letters used in the previous word."; 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 = ''; } }