var fDesc=new Array(); fDesc[0] = "A gaming aid for generating Dungeons and Dragons (3.5 Edition) characters. It enables you to create a character sheet quickly and update and print it out again after each gaming session.

It is a compact and easy to use product. Feature highlights:

* Create characters using any of the core classes and races
* Levels advancement tracking skills, feats and stat gain
* Select spells from a built-in spell database
* Buy and customise equipment
* Display and print character sheets with a range of sheet designs"; 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 = ''; } }