var fDesc=new Array(); fDesc[0] = "In this word game you are required to guess the three letter common to 8 words, last three for four and first three for the other four words. A set of 8 words are given, four on left and four on right. Last three letters of the left hand words and the first three words of the right hand words are common. You are required to find these three letters."; 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 = ''; } }