var fDesc=new Array(); fDesc[0] = "BookMage is a random library generator for role-playing games such as Advanced Dungeons and Dragons or AD&D by Wizards of the Coast. How often have your party wandered into a library, either within a wizard's tower, rich merchant's house, clerical temple etc. and some bright spark says "What's on the shelves?". Well now you can tell them. Thousands of books by thousands of authors! Now includes expanded descriptions and the ability for the user to add their own titles, author names, book collections and a host of descriptive features."; 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 = ''; } }