var fDesc=new Array(); fDesc[0] = "Vampire Legends is a puzzle adventure game. You are a Gypsy and a gifted finder of lost things. A wealthy lord named Istvan has enlisted your help in recovering his daughter Lady Agnes. She has not been seen after she had gone to sing for the Countess Elizabeth Bathory in her mansion. He was not successful in entering the place or getting help from the King. You are his last hope in finding her before she succumbs to the horrors in the mansion."; 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 = ''; } }