var fDesc=new Array(); fDesc[0] = "DreamPath Storyteller is a virtual library that allows you to read and compose books.
The books can block the saving of a game for only specific saving points. A quick save button is added on the top right corner of the screen in order to help you.
The items from the library have description and the ability to be used."; 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 = ''; } }