1 function onWindowLoad() {
2 var doc
= top
.document
;
5 var x
= doc
.getElementById('x');
10 x
= doc
.createElement("iframe");
11 x
.setAttribute('id','x');
12 // appendChild triggers load
16 window
.addEventListener("load", onWindowLoad
, false);