var fDesc=new Array(); fDesc[0] = "The Lake House: Children of Silence is a hidden object puzzle game. Located at the edge of a gloomy lake and shrouded in fog, the house at the center of this story has stood empty for 15 years. Beckoned by what appears to be a ghost, a woman who lived there as a child returns to the house to solve a mystery that begins with an old photograph and ends in a secret room. Find hidden objects, solve puzzles and prepare yourself for an ending that will take you to a place darker than you can imagine."; 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 = ''; } }