function promo006(){
	var promo006 = document.getElementById("promo006");

	if(!promo006)
		return;

	var linkregulamento = getElementsByClassName("regulamentobutton", promo006);
	linkregulamento = linkregulamento[0];

	linkregulamento.setAttribute("href", "#caixaregulamento");
	linkregulamento.setAttribute("target", "_self");
	linkregulamento.onclick = function(){
		regulamento.style.display = "";

		return true;
	}

	var regulamento = getElementsByClassName("caixaregulamento", promo006);
	regulamento = regulamento[0];
	regulamento.style.display = "none";


	var fechar = getElementsByClassName("fecharbutton", promo006);
	fechar = fechar[0];
	fechar.onclick = function(){
		regulamento.style.display = "none";
	}
}