Cookie Path Example

<SCRIPT>

// do a "cookie dump" for this particular directory - /coin70/week2
document.
write(unescape(document.cookie) + "<P>");

// get the value for TestPath
document.
write("TestPath = " + getCookie("TestPath") + "<BR>");

// get the cookie value for Week7
document.
write("Week7 = " + getCookie("Week7") + "<BR>");

</SCRIPT>