myAlert = function (){
	
	return {	
		error : function (texto){
        	Ext.Msg.show({
        		title:'Error',
            	msg: texto,
            	buttons: Ext.Msg.OK,
            	icon: Ext.MessageBox.ERROR
        	});
		},	
		info : function (texto){
        	 Ext.Msg.show({
            	 title:'Información',
                 msg: texto,
                 buttons: Ext.Msg.OK,
                 icon: Ext.MessageBox.INFO
             });
		}
	}
}();

