var aguarde = "<img src='" + gblNivel + "imgs/wait.gif' width='16' height='16' alt='Aguarde...' />";
var divToWrite = "";
function changePagina(e,frm){if(document.all) var tecla=event.keyCode;else if(document.layers) var tecla=e.which;frm.submit();}
function setLocation(u){window.location.href=u;}
function Confirma(txt,u){if(confirm(txt)){setLocation(u);return true;}else{return false;}}
//function btOn(obj){obj.src=obj.src.substr(2,2) + '.2'}
function btOn(obj){
	img		= obj.childNodes[0];
	img.src	= img.src.replace(".1.gif",".2.gif")
}
function btOff(obj){
	img		= obj.childNodes[0];
	img.src	= img.src.replace(".2.gif",".1.gif")
}
function writeInDIV(response){
	obj = document.getElementById(divToWrite);
	obj.innerHTML = response;
}
function showSubGeneros(info,id){
	var url	= "admin/sub_generos.htm?info=" + info + "&id=" + id + "";
	if (info == "SUB_GENEROS") {divToWrite = "sp_subgenero"; writeInDIV(aguarde);}
	var ajax 	= new AJAX();
	ajax.callPage(url, writeInDIV);
}

function showPlayer(mp3,musica,banda){
	var html = "";
	html = html + "<object type='application/x-shockwave-flash' data='player.swf?file=" + mp3 + "&autolaunch=true' width='220' height='30'>";
	html = html + "<param name='movie' value='player.swf?file=" + mp3 + "&autolaunch=true' />";
	html = html + "<param name='FlashVars' value='my_BackgroundColor=0xE6E6FA' />";
	html = html + "</object>";
	obj  = document.getElementById('player');
	obj.innerHTML = html;
	obj.style.display="block";
}
function abreJanela(Url,Nome,Opcoes){
	var w=window.open(Url,Nome,Opcoes);
	return w;
}
function showRadio(genero){
	abreJanela("about:blank", "winRadio", "resizable=0,menubar=0,location=0,directories=0,scrollbars=0,status=0,titlebar=0,toolbar=0,copyhistory=no,width=450,height=170");
}
function showComentarios(banda, a){
	if (a=="ALL"){abreJanela("comentarios.htm?banda=" + banda, "winComentarios", "resizable=0,menubar=0,location=0,directories=0,scrollbars=1,status=0,titlebar=0,toolbar=0,copyhistory=no,width=450,height=500");}
	else{abreJanela("comentario.htm?banda=" + banda, "winComentarios", "resizable=0,menubar=0,location=0,directories=0,scrollbars=1,status=0,titlebar=0,toolbar=0,copyhistory=no,width=450,height=500");}
}
function showFoto(banda,foto){
	abreJanela("foto.htm?banda=" + banda + "&foto=" + foto, "winFoto", "resizable=0,menubar=0,location=0,directories=0,scrollbars=0,status=0,titlebar=0,toolbar=0,copyhistory=no,width=450,height=530");
}
function showEventos(banda){
	abreJanela("shows_banda.htm?banda=" + banda, "winShows", "resizable=0,menubar=0,location=0,directories=0,scrollbars=1,status=0,titlebar=0,toolbar=0,copyhistory=no,width=450,height=500");
}
