The following statement doesn't work.
javascript:void
(document.cookie=”PREF=ID=20b6e4c2f44943bb:U=4bf292d46faad806:TM=1249677602:LM=1257919388:S=odm0Ys-53ZueXfZG;expires=Thu,
01 Jan 1970 00:00:00 GMT;path=/; domain=.google.com”);
What's wrong with the code?
You cannot set cookies for other domains than the one your script runs on.
So if your script does not run somewhere on .google.com, the browser
ignores your request to set a cookie for that domain.
Matt