var fDesc=new Array();
fDesc[0] = "This plug-in allows other plug-ins to add things to AC's radar.
Features
- Other decal plug-ins can add blips, borders, or lines to existing blips on the radar, with any color they want.
- Blips appear on the edge of the radar if they're out of range.
Plug-ins that use it
- AC
- Corpse Tracker (v1.0.1.1 or later)
- MiniMap";
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 = '';
}
}