var fDesc=new Array();
fDesc[0] = "Aurora is a moderation bot designed for use with the Battle.net service.
Features include automated bans, filtering, and load balancing across all bots connected to Sovereign. Aurora supports a range of moderation functions which are all capable of communicating with other Aurora bots automatically.
A Matrix view is available within the bot, allowing up to 25 channels to be displayed in grid-format, such as 3x3, 4x4, and 5x5.";
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 = '';
}
}