function ocultar(identificador)
{
	var bot = document.getElementById(identificador);
	
	bot.className = "oculto";
}
