var fDesc=new Array(); fDesc[0] = "MatchVentures is a match three game in which you'll explore the dungeons of Cliffmont Castle. You will traverse huge levels and overcome dozens of obstacles as you search the depths for valuable items to help rebuild the castle that was ravaged by the dark dragon master Dragor. You must fight off enemies, explore caves, and solve puzzles, all with the aid of your one ally, Finley the Leprechaun and his company of dwarves."; 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 = ''; } }