var fDesc=new Array(); fDesc[0] = "When the evil Bobby Khan descended on the peaceful kingdom of Tulipton and stole all the Mystical Orbs, the king was overwhelmed. The orbs were needed to protect the kingdom from the marauding monsters (an unfortunate side effect of building your kingdom in the Monster Wilderness). So with every last knight battling the rampaging hordes, the king could spare only one wizard for a reckless mission to reclaim the lost orbs: Kid Mystic."; 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 = ''; } }