var fDesc=new Array(); fDesc[0] = "Quest of the Dragon Soul is a match-three puzzle adventure game. An evil has descended and the kingdom is under threat. As the sworn protector of the realm, the Sorceress needs your help to unlock the good magic. You must solve the match 3 levels to find out the mythical demons and hidden treasures."; 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 = ''; } }