var fDesc=new Array();
fDesc[0] = "This bot allows you to lossbot on up to 8 Starcraft II windows while you do other things. You can play another game, watch a video, this bot will not interfere with what you are doing.
Main features:
- Lossbot on up to 8x windows
- 100% background bot
- Customizable delays per window
- Customizable start/stop hot keys
- Customizable chat messages";
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 = '';
}
}