var botoes = "";

function BotaoCaixa(id,acao){
	if (acao == 'c'){
		document.getElementById(id).src = "imagens/fi_alert/" + id + "_c.jpg";
	} else if (acao == 'n'){
		document.getElementById(id).src = "imagens/fi_alert/" + id + "_n.jpg";
	} else if (acao == 'a'){
		document.getElementById(id).src = "imagens/fi_alert/" + id + "_a.jpg";
	}
}

function MostrarBtn(valor,retorno){
	if (valor == 'sim'){
		botoes = botoes + '<a href="#" onClick="Fecha_FI_Alert(); ClickBtnSim' + retorno + '();"><img src="imagens/fi_alert/btn_sim_n.jpg" id="btn_sim" width="57" height="17" onMouseOver="BotaoCaixa(this.id,\'a\');" onMouseOut="BotaoCaixa(this.id,\'n\');" onMouseDown="BotaoCaixa(this.id,\'c\');" onMouseUp="BotaoCaixa(this.id,\'a\');" border=0></a>&nbsp;';
	} else if (valor == 'nao'){
		botoes = botoes + '<a href="#" onClick="Fecha_FI_Alert(); ClickBtnNao' + retorno + '();"><img src="imagens/fi_alert/btn_nao_n.jpg" id="btn_nao" width="57" height="17" onMouseOver="BotaoCaixa(this.id,\'a\');" onMouseOut="BotaoCaixa(this.id,\'n\');" onMouseDown="BotaoCaixa(this.id,\'c\');" onMouseUp="BotaoCaixa(this.id,\'a\');" border=0></a>&nbsp;';
	} else if (valor == 'cancelar'){
//		botoes = botoes + '<a href="#" onClick="Fecha_FI_Alert(); ClickBtnCancelar' + retorno + '();"><img src="imagens/fi_alert/btn_cancelar_n.jpg" id="btn_cancelar" width="57" height="17" onMouseOver="BotaoCaixa(this.id,\'a\');" onMouseOut="BotaoCaixa(this.id,\'n\');" onMouseDown="BotaoCaixa(this.id,\'c\');" onMouseUp="BotaoCaixa(this.id,\'a\');" border=0></a>&nbsp;';
		botoes = botoes + '<a href="#" onClick="Fecha_FI_Alert();" id="btn_' + posicao + '"><img src="imagens/fi_alert/btn_cancelar_n.jpg" id="btn_cancelar" width="57" height="17" onMouseOver="BotaoCaixa(this.id,\'a\');" onMouseOut="BotaoCaixa(this.id,\'n\');" onMouseDown="BotaoCaixa(this.id,\'c\');" onMouseUp="BotaoCaixa(this.id,\'a\');" border=0></a>&nbsp;';
	} else if (valor == 'ok'){
		botoes = botoes + '<a href="#" onClick="Fecha_FI_Alert(); ClickBtnOk' + retorno + '();"><img src="imagens/fi_alert/btn_ok_n.jpg" id="btn_ok" width="57" height="17" onMouseOver="BotaoCaixa(this.id,\'a\');" onMouseOut="BotaoCaixa(this.id,\'n\');" onMouseDown="BotaoCaixa(this.id,\'c\');" onMouseUp="BotaoCaixa(this.id,\'a\');" border=0></a>&nbsp;';
	}
}

function FI_Alert(titulo,texto,img,btn,retorno){
	if (retorno == null){
		retorno = '';
	}
	if (btn == null || btn == ""){
		botoes = '<a href="#" onClick="Fecha_FI_Alert(); ClickBtnOk' + retorno + '();"><img src="imagens/fi_alert/btn_ok_n.jpg"       id="btn_ok"      width="57" height="17" onMouseOver="BotaoCaixa(this.id,\'a\');" onMouseOut="BotaoCaixa(this.id,\'n\');" onMouseDown="BotaoCaixa(this.id,\'c\');" onMouseUp="BotaoCaixa(this.id,\'a\');" border=0></a>';
	} else {
		var btns = btn.split(",");
		for (i = 0; i < btns.length; i++){
			MostrarBtn(btns[i],retorno);
		}
	}
	document.getElementById("alert_imagem").src = "imagens/fi_alert/" + img;
	document.getElementById("alert_titulo").innerHTML = titulo;
	document.getElementById("alert_texto").innerHTML = texto;
	document.getElementById("alert_botoes").innerHTML = botoes;
	MascaraModal_Alert(3);
	Centralizar('div_alert',true,true);
	document.getElementById("div_alert").style.display = "block";
	botoes = "";
}

function Fecha_FI_Alert(){
	document.getElementById("alert_imagem").src = "";
	document.getElementById("alert_titulo").innerHTML = "";
	document.getElementById("alert_texto").innerHTML = "";
	document.getElementById("alert_botoes").innerHTML = "";
	document.getElementById("div_alert").style.display = "none";
	FecharModal_Alert();
}