336962-1.xhtml (324B)
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 2 3 <script> 4 5 function init() { 6 document.getElementById("foopy").style.display = "block"; 7 document.getElementById("foopy").style.position = "absolute"; 8 } 9 10 window.addEventListener("load", init, 0); 11 12 </script> 13 14 15 <box id="foopy" /> 16 17 18 </window>