var fDesc=new Array();
fDesc[0] = "BODLoader is a mod manager for Blade of Darkness. It is capable of downloading, installing, and uninstalling various mods and maps that are created.
The main features are:
- Minimum Blade source code changes. It just adds one line to the bottom of Menu.py.
- Integrated into Blade's interface.
- Allows to install/uninstall compatible mods
- Allows to activate/deactivate compatible mods.
- Every mod can add its own Mods menu.
- Easy adaptation of already developed mods to make them compatible with BODLoader.
- Support for customized maps.
- Support for multilanguage.
- Supports downloading mods and maps from internet";
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 = '';
}
}