var fDesc=new Array(); fDesc[0] = "Once upon a time there was a Wizard Land, where witches, wizards, fairies and fairytale creatures dwelled. Sometimes they lived together in peace, sometimes there were local conflicts; but no conflict could compare to the Last Battle of Wizard Land. The inhabitants of the country could exist thanks to a magic crystal flower, which had grown in an underground maze in the White Mountains and emanated astounding magic energy. But the wicked wizard decided to take all that energy, and it meant the downfall of the whole country."; 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 = ''; } }