var fDesc=new Array();
fDesc[0] = "ADOM Sage is a frontend to ADOM that adds various usability enhancements and minor bugfixes.
Main Features:
- Colored messages
- Spell and mindcraft screens now display range, damage, and duration.
- Macros
- Support for block- and line-drawing characters (instead of #, -, |)
- Support for alternate cursor styles
- Mouse support while targeting (currently only on Linux)
- Suppression of excess messages while in the ToEF
- The ability to automatically swap places with neutral creatures
- Shortened monster names (e.g., "Kranach" instead of "Kranach, the raider lord")
- Commands to set the dynamic display or to repeat the last command entered
- Pressing < or > while teleporting moves the cursor to the up/down stairs
- Several other miscellaneous features";
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 = '';
}
}