var fDesc=new Array(); fDesc[0] = "The D&D Edition tools are a linked set of programs which are designed to aid Gamemasters in the preparation and running of game sessions. This includes everything from keeping track of your PCs' statistics, to crunching all the numbers associated with combat to generating a weather forecast for your campaign world. The aim of this tutorial is to guide you step by step through most of the main features of the programs. It is designed so that you can follow along with the programs open yourself if you wish, or to just read which ever parts are proving tricky to grasp."; 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 = ''; } }