However, this appears to not work in IE5/Mac (probably due to the DOM defaulting to features being turned off rather than being switched on). This does appear to work:
Put this in the head or external file:
code:
function targetBlank (url) {
blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}
and this in the page to call the function:
code:
<a href="http://www.domain.com" onclick="targetBlank(this.href);return false;">The GN in a new window</a> using Emps' reduced function