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

<!-- 
     js_mousy1.html

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

<head>
    <title> js_mousy1 </title>

    <script type="text/javascript">
        <!--
        function do_something()
        {
            alert("A mouseover event");
            return false
        }
        //-->
    </script>

</head>

<body >

    <h3> js_mousy1.html </h3>

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

    <hr>
    <ul>
        <li> Click 
             <a href="http://www.humboldt.edu/~st10"
                onmouseover="do_something()"
             > here </a>
             to get to Sharon Tuttle's home page <br>
        <li> Click <a href="js_onunload.html"> here </a> to run
             js_onunload
    </ul>
    <hr>
    <h4> Several things to note: </h4>
    <ol> 
        <li> This is a numbered list.
        <li> This page has NO JavaScript in it.
        <li> Its purpose is to show HTML link, numbered list, and unnumbered list examples.
    </ol>

    <hr>

</body>
</html>