var fDesc=new Array(); fDesc[0] = "Dnd Dungeon Master's Battle Screen is a freeware tool for helping D&D 4e Dungeon Masters in managing battles. The tool reflects combatants initiative order, turns, rounds, hitpoints, conditions, allows to keep turn notes per combatant.

This tool is primary a turn counter, however it helps to handle other battle actions. It visualizes the state of battle at any point of time, giving clear picture about next turns according actual initiative order."; 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 = ''; } }