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

<!-- 
     js_onunload.html

     by: Sharon Tuttle
     last modified: 8-31-06
-->

<head>
    <title> js_onunload </title>

    <script type="text/javascript">
        <!--
        function many_alerts()
        {
            alert("This box was called with an onload event")
            alert("And another")
        }

        function say_goodbye(name)
        {
            alert("Goodbye, " + name + "!")
	    alert("Don't forget to write!")
        }
        //-->
    </script>
            
</head>

<body onload="many_alerts()" onunload="say_goodbye('George')">

    <h3> js_onunload.html </h3>

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

    <hr>
    <h1> <script type="text/javascript"> 
             <!-- 
             document.write("Hello!") 
             //--> 
        </script>
        <noscript>
        This page needs JavaScript enabled!
        </noscript>

</body>
</html>