var fDesc=new Array();
fDesc[0] = "Garena Banlist will help make your games better by making it less likely that a leaver will enter it.
Main Features :
- Banning a player ( by name , ip and garena user id )
- You can watch the chat / players from the GGlist
- You are announced when the game starts. This, coupled with the above feature, will let you do other things while players join.
- When a player leaves the game you will be able to quickly ban him using the "/banlast" command
- Checklevels - a command that will print the player's levels into chat making it easier to filter low level players.
- Online database. This will allow you to use the GGlist from anywhere without losing your bans.
- You do not have to be a host in order to use this tool.
- Legal Room Joiner for helping your friends enter the same room as you .";
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 = '';
}
}