var fDesc=new Array(); fDesc[0] = "Long ago, hidden in luscious and serene woodland that descended to the warm sea, there lived four magicians. The magicians were admired amongst the people of that land for the good deeds that they did: they helped the peasants from nearby villages; they protected the woodland from deadly fires; and fed the beasts of the land during the cold, severe winters. Nobody knew that quiet province hidden in the woods, the home of fishermen and peasants, better than the four magicians did..."; 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 = ''; } }