1 function Sys$_Application$raiseLoad() {
2 var h = this.get_events().getHandler("load");
3 var args = new Sys.ApplicationLoadEventArgs(Array.clone(this._createdComponents), !this._initializing);
4 if (h) {
5 h(this, args);
6 }
7 if (window.pageLoad) {
8 window.pageLoad(this, args);
9 }
10 this._createdComponents = [];
11 }