var fDesc=new Array(); fDesc[0] = "The Book of Unwritten Tales is a classic point & click adventure with a big focus on humor and obscure references. From the obvious "One Ring" over a scarecrow looking like Indiana Jones to more subtle hints hidden in the various locations and the many multiple-choice dialogues, the game takes every chance to make fun of famous pop-culture elements and often even breaks the fourth wall by doing so. By controlling one of the four characters and switching between them either when the story dictates it or later in the game at any time, the player collects everything that isn't nailed to a wall - and sometimes even that - and talks to everyone he meets in order to solve the many riddles in the game and ultimately advance the storyline by doing so. The game even allows the solving of some riddles with different characters without forcing the player to use a specific one. While the outcome is, of course, always the same, the way to solving the riddle can be quite different."; 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 = ''; } }