function CaixaAcao(mensagem) {

	this.setMensagem = function(mensagem) {
		this.mensagem = mensagem;
	}

	if( Util.isUdf(mensagem) ) {
		this.mensagem = "";
	} else {
		this.mensagem = mensagem;
	}

	this.carrega = function(attributes) {

		this.criaElemento("caixaAcaoPainelUtilDom");

		var tb = document.createElement("TABLE");
			tb.cellPadding = 5;

			tb.style.borderLeftStyle = "solid";
			tb.style.borderLeftColor = "#e5e5e5";
			tb.style.borderLeftWidth = "2px";

			tb.style.borderTopStyle = "solid";
			tb.style.borderTopColor = "#e5e5e5";
			tb.style.borderTopWidth = "2px";

			tb.style.borderRightStyle = "solid";
			tb.style.borderRightColor = "#ccc";
			tb.style.borderRightWidth = "2px";

			tb.style.borderBottomStyle = "solid";
			tb.style.borderBottomColor = "#ccc";
			tb.style.borderBottomWidth = "2px";

		var cell = tb.insertRow(-1).insertCell(-1);
			cell.style.color = "#ffffff";
			cell.innerHTML = "<b>" + this.mensagem + "</b>";

		this.getPainel().appendChild(tb);

		this.getPainel().style.backgroundColor	= "#009966";

		if( attributes ) {

			if( attributes.tipoLoading ) {
				attributes = {	top : true,
								fade : { milisec : 10 }};
			}

			this.show( attributes );
		} else {
			this.show( { xy : [470,300]} );
		}
	}
}

CaixaAcao.prototype = new PainelUtilDom();