function msjEstado(){
	
	this.html =	'<div>{msj}</div>';
	this.tpl = new Ext.Template(this.html);		
	this.tpl.compile();		
	this.elEstado = Ext.get('msjEstado');
	this.encendido = false;
	this.pintar = function(mensaje){	
		//var padre = this;	
		//this.elEstado.update();
		//this.tpl.append(this.elEstado,{msj:mensaje});
		//this.elEstado.fadeIn({duration: 2,callback:function(){
		//	padre.elEstado.fadeOut({duration: 2,callback:function(){
		//	}});
		//}});	
		Ext.MessageBox.alert(localize("addlibrary"), mensaje);
	}	
}
