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
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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