var fDesc=new Array(); fDesc[0] = "Since there are 16 Necromancer spells, and only 10 Paladin abilities I have decided to add the new Exorcism spell to the second Paladin tab in the tool and move it all the way to the right to separate it from the Paladin abilities. The default macro key setting for the new spell is Ctrl-Alt-O (the letter o, not the number 0) which is right at the end of the other Necromancer spells."; 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 = ''; } }