var fDesc=new Array(); fDesc[0] = "Twenty years ago, a group of children in the town of Greystone were taken by a mysterious fog while playing hide and seek, including your brother. Only you escaped. Your father went looking for your brother and never returned. Now you have found evidence that your father has been alive this entire time, still searching for the missing children. Return to Greystone and help your father to find your brother."; 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 = ''; } }