// ActionScript Document
var n = 0; 
function ShowCategories() {

var categories = document.getElementById('categories');
var BotShow = document.getElementById('BotShow');
var status = document.getElementById("bot_category").firstChild.nodeValue; 



if(n == 0){



categories.style.height = '217px';
BotShow.style.backgroundImage = 'url(http://www.gamesxd.com/imgs/bots/bot_categories_close.gif)';
document.getElementById("bot_category").firstChild.nodeValue = "Cerrar categorias"; 

n = 1;

}else{

categories.style.height = '5px';
BotShow.style.backgroundImage = 'url(http://www.gamesxd.com/imgs/bots/bot_categories.gif)';
document.getElementById("bot_category").firstChild.nodeValue = "Ver categorias"; 

n = 0;

}

} 

