1 function Sys$_Application$_doInitialize() {
2 Sys._Application.callBaseMethod(this, 'initialize');
3 var handler = this.get_events().getHandler("init");
4 if (handler) {
5 this.beginCreateComponents();
6 handler(this, Sys.EventArgs.Empty);
7 this.endCreateComponents();
8 }
9 this.raiseLoad();
10 this._initializing = false;
11 }