per our phone conversation but to put it here as well for others.
in a word, no.
since you are talking about using and image beacon to hit a domain that the user is not currently on, a remote domain, the cookie will be associated with that remote domain. Not the local domain that the user is on. There is no point at which the cookie from the remote domain will be able to cross contexts to the local domain.
The image beacon is basically just like an IFRAME conceptually.
Your user is on localdomain.com
in the page there is am img tag with a URL of: remotedomain.com/cookiemaker.php
That plants a cookie on the user's machine, but the cookie is owned by remotedomain.
JS within the page cannot read that cookie, because the JS is under the localdomain context, and as such is prevented from the cookie.
unless im wrong of course
