function carregaBandas(id) {


	var div = document.getElementById("indice_bandas");
	div.innerHTML = "Aguarde, Carregando...";

	var url = "index.php?module=BandaController&action=CarregaBandas&indice="+id;
	var ajx = new AJAX();

	ajx.url = url;
    ajx.modo = 'T';
    ajx.processaresultado = function(r){
    	div.innerHTML = r;
    }
	ajx.conectar();
}


function getBanda( id ) {

	window.location="index.php?module=BandaController&action=ViewBanda&banda="+id;

}

/*
* Abrir janela popup
*/
function janela(p_pag, p_width, p_heigth) {
//alert("Estamos enfrentando problemas técnicos alheios.\nDesculpe pelo transtorno gerado,em breve estaremos retornando com nosso serviço.\nObrigado.");
var desktop = window.open(p_pag,'player_noventona','scrollbars=no,location=no,directories=no,status=no,resizable=no,copyhistory=no,menubar=no,width='+p_width+',height='+p_heigth);

}

function p_90() {
	//TROCAR
	janela("http://www.cidadewebrock.com.br/noventona/player.php","717","395");

}

function ViewGanhadores(){
	var combo = document.getElementById("ganhadores");
	window.location="index.php?module=PromocaoController&action=ResultadoPromocao&promo=" + combo.value;
}