I finally did solve this problem, and it did have to do with cookies.
As it turns out, it was the same "dequote" problem with cookies. But
getting them just right was something of a problem.
Once I located the proper cookies to modify, on which page, I then did this:
cookie.value = ''\"'' + cookie.value +
''\"''
which, as it turns out, does not work. When I changed the single quotes to
double:
cookie.value = "\"" + cookie.value + "\""
everything worked fine. A silly little mistake in regard to string
interpolation, but it cost me way too much time.
Lonny Eachus
==============