var fDesc=new Array(); fDesc[0] = "An evil wizard has attacked a kingdom of beauty and enchantment, leaving a path of destruction in his wake! Your mission: Gather the forces of good and repair the broken land one village at a time! As you collect the resources you need, you must also fend off the wizard's followers, employ power-ups that give your workers a boost, and complete the renovations before time runs out. The citizens of Hidden World are counting on you, so don't delay!"; 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 = ''; } }