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

<!-- 
     js_loc1.html
     
     by: Sharon Tuttle
     last modified: 09-05-06
-->

<head>
    <title> js_loc1 </title>

    <script type="text/javascript">
        <!--
        function seeIfHappens(message)
        {
            alert("Was seeIfHappens really called with " + message + "?!")
        }
        //-->
    </script>
</head>

<body>
    <h3> js_loc1.html </h3>

    <h4> (adapted by Sharon Tuttle, last modified 09-05-06) </h4>

    <hr>

    <script type="text/javascript">
        <!--

        // play: can we go to a new web page this way?
        var newURL = prompt("What URL shall we go to now?")
        window.location = newURL        

        //-->
    </script>
    <noscript> 
        <hr> 
        <h3> Your browser does not support JavaScript, or has it disabled;
             <br> 
             please note that, as a result, this page will not work. </h3> 
        <hr> 
    </noscript> 

    <hr>

</body>
</html>