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

<!-- 
     js_cookie1.html

     by: Sharon Tuttle
     last modified: 09-19-06
-->

<head> 
    <title> js_cookie1.html </title>
</head>

<body>
    <h3> js_cookie1.html </h3>

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

    <hr>

    <script type="text/javascript">
        <!--
            // setting a cookie with name sharonCookie and value 13

            document.cookie = "sharonCookie=13"
            
            // will this create a second cookie, or nuke the first?

            document.cookie = "colorPref=false"
        //-->
    </script>
    <noscript>
        <h1> Your browser does not support JavaScript; this page will not work
             </h1>
    </noscript>

    <ul>
    <li> <a href="js_cookie2.html"> js_cookie2.html </a>
    </ul>

</body>

</html>