What I would do to add an onload event to the body element on all pages is in a plugin hooked to "parse_templates" with the following:
PHP Code:
$spacer_close .= '<script>
function myFunction()
{
alert("Hello!");
}
var el = document.getElementsByTagName("html")[0];
el.innerHTML = el.innerHTML.replace("<body>", "<body onload=\"myFunction();\">");
</script>';
However, there are better ways to add an event to a document, I am just trying to follow the example you gave.