Logged In: NO

To do it you have to change _openURL function this is the
source:

function _openURL(address, _target)
{
if (_target != '')
if (_browser._name=='IE')
parent.document.getElementById(_target).src=address;
else
parent.document.getElementById(_target)[0].src=address;
else
self.location=address;
}

It worrs for IE, but for Mozilla FireFox it doesnt (I dont
have enough experience with JS) if you fix for other
browsers, please fix the code. Another change is on
TPopupMenu function, you have to add a new parameter and
send it to _openURL

I expect that it help you

JQ