To change the link target of the header (when you've set it to respond via "clickgo"), just find the line:
Code:
setTimeout(function(){location=targetLink.href}, 200) //ignore link target, as window.open(targetLink, targetLink.target) doesn't work in FF if popup blocker enabled
inside the .js file, and change that to:
Code:
setTimeout(function(){parent.frames['framename'].location=targetLink.href}, 200) //ignore link target, as window.open(targetLink, targetLink.target) doesn't work in FF if popup blocker enabled
where "framename" is the name of the frame you wish to target.
Bookmarks