Please send questions to st10@humboldt.edu .
<html>

<!-- js2.html -->
<!-- ADAPTED from example in:
     http://www.w3schools.com/js/tryit.asp?filename=tryjs_headsection,
     a JavaScript tutorial from w3schools.com
     adapted by: Sharon Tuttle
     last modified: 8-22-06
-->

<head>
    <title> JavaScript Example #2 - an Alert Box </title>

    <script type="text/javascript">
        function message()
	{
            alert("This alert box was called with the onload event")
        }
    </script>
</head>

<body onload="message()">

    <h2> JavaScript Example #2 - an Alert Box </h2>

    <h3> ADAPTED from example in: <br>
	 http://www.w3schools.com/js/tryit.asp?filename=tryjs_headsection, <br>
	 a JavaScript tutorial from w3schools.com <h3>

    <h4> (adapted by Sharon Tuttle, last modified 8-22-06) </h4>

</body>
</html>