Please shorten your attribution.
Cookies are always sent to the server.
This is utter nonsense. Cookies are *never* sent to the
server. Instead, the server can send information via HTTP
to the user agent in order to write/retrieve cookie
*information* stored locally, in small files (cookies.txt
in Netscape). That information can be only retrieved by
server-side applications if allowed by the user and is
in compliance with certain built-in security precautions.
For common JavaScript cookies and cookie information with
document.cookie, they *never* leave the client, as the
JavaScript code that sets and retrieves them runs
client-side, though it must be downloaded from the server
first.
PointedEars