var fDesc=new Array(); fDesc[0] = "Interactive Dungeon is a software for creating maps often used in role playing games. Crypts, mazes, catacombs, ruins, manors, castles... all sorts of dungeon layouts are possible. It is quick and very easy to use and maps can be rapidly printed to be used in campaigns.

Interactive Dungeon is a common fantasy among gamers in the RPG community: the Gaming Room. It is often described as a room decorated with props and including computers that would bring to life an adventuring team's advance in a dungeon, complete with visual and sound effects."; 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 = ''; } }