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

<!-- 
     js_cookie2.html

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

<head> 
    <title> js_cookie2.html </title>
</head>

<body>
    <h3> js_cookie2.html </h3>

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

    <hr>

    <script type="text/javascript">
        <!--
            document.write("<h1> document.cookie: ",
                           document.cookie, "</h1>")

            document.write("<hr>")
            
            // loop through cookie object's properties?
            for (var prop in document.cookie)
            {
                document.write("document.cookie.", prop, " = ", 
                               document.cookie[prop], 
                               "<br>")
            }

        //-->
    </script>
    <noscript>
        <h1> Your browser does not support JavaScript; this page will not work
             </h1>
    </noscript>

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

</body>

</html>