var fDesc=new Array(); fDesc[0] = "We're going to fulfill a wish and garden with the fairy Holly in Plantasia Deluxe. Plant seeds, water them and the flowers will shoot up in an instant. Never before will you have seen such a miracle! Don't forget to pull up the weeds and kill the bugs, but you don't need green fingers and you won't get your hands dirty!"; 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 = ''; } }