var fDesc=new Array(); fDesc[0] = "When hunting the Spider can catch as many butterflies and flies as his strength and dexterity allow him to. It is a real amusing adventure for him: he can either catch lots of butterflies and dragonflies or fall into insects’ clutches himself. But the Spider keeps in mind that good hunting should be rewarded, and he can earn a pretty sum of money for the prey! The more insects he catches, the more money he earns to buy the most effective instruments to improve the skills!"; 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 = ''; } }