var fDesc=new Array(); fDesc[0] = "I Know a Tale is a a hidden object game with a mystery theme. A sheriff receives a message about a robbery at a store. Once he arrives, he sees petrified robbers and the collector who hammers planks to the basement. Seeing the sheriff, the collector throws a briefcase and escapes into the street leaving behind a videotape. Who or what resides in the basement? What exactly happened here? You must help him uncover the mystery."; 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 = ''; } }