var fDesc=new Array(); fDesc[0] = "This program lists unopened corpses, and optionally highlights them with an arrow pointing to them.
* Lists corpses including distance in metres, name, and time to decay (assuming they all decay after 5 minutes). Can be sorted by age or distance.
* Points an arrow at unopened corpses, which can be any color
* Hotkeys to either select or open unopened corpses in the list. These can be defined for nearest, oldest, or 'best', which just means the nearest, unless there's a corpse which is more than 4 minutes old, in which case it'll select/open whichever is oldest.
* Optionally shows corpses as a small cross on the radar, using the Radar Add-on plugin.
* Shows your kills in white, any other kills in yellow, and shows corpses that generated a rare with a '*' before the name."; 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 = ''; } }