For those having the same problem I was having with the flash banner itself loading in one window and the link for the banner in another, the attached swf fixes that problem.
In the original swf supplied with the Banner System, there were two items, one with an onClipEvent (mouseUp) and one with an on (release) event which are in effect the same thing, and this was causing two windows to open.
This swf eliminates the onClipEvent (mouseUp) for the banner container and leaves the on (release) for the button. That way click tracking continues to work.
Changes made to flash source:
REMOVED:
Code:
onClipEvent (mouseUp)
{
getURL(_root.banner, "_blank");
}
LEFT INTACT:
Code:
on (release)
{
getURL(_root.jlink, "_blank");
}