Ext.ns('harold');

harold.Msg = {
	init: function(){
	
 	Ext.onReady(function() {
    Ext.Msg.wait('Cargando... Por Favor Espere!');  
   window.setTimeout(function(){  
         Ext.Msg.hide();  
     },6000);
});
		
	}
}

Ext.onReady(harold.Msg.init,harold.Msg);

