<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<head runat="server">
<title>Test the execution order of js</title>
<script language="javascript" type="text/javascript"><!--
var a = "This is a piece of JS code inside the header";
alert(a);
// --></script>
</head>
<body onload="javscript:alert('This is the code in the Onload event of the body!');">
<form runat="server">
<div>
<p>Test the execution order of js
</p>
</div>
</form>
<script language="javascript" type="text/javascript"><!--
var a = "This is the last JS code of a piece of page";
alert(a);
// --></script>
</body>
</html>