var fDesc=new Array(); fDesc[0] = "Jacksmith is the craftiest donkey in all the land. In Jacksmith, you are a blacksmith crafting a wide range of weapons for all of your warriors. Crafting weapons is completely hands-on. Choose your ore, choose your mold, melt it, pour it, construct it, and design it. Whether these are swords, bows, arrows, axes, or others things, you'll need skills and strategy to make the perfect weapon. After crafting, it's off to battle with your team of warriors."; 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 = ''; } }