<%@LANGUAGE="JAVASCRIPT"%> <% // SET THE COOKIE FOR DIFFERENT STYLESHEETS // check if the page has a query passed in if (Request.ServerVariables("QUERY_STRING") != "") { // if we've got style passed in, set it to the cookie and use it if (Request.QueryString("style") == "aural" || Request.QueryString("style") == "text" || Request.QueryString("style") == "print" || Request.QueryString("style") == "default") { // write the cookie Response.Cookies("style") = String(Request.QueryString("style")); } } // send the user back to where they came from var OrigPage = Request.ServerVariables("HTTP_REFERER"); Response.Redirect(OrigPage); %>