I have read the related questions on this topic, but haven\'t yet found a solution to this issue. I have a simple javascript function that calls window.open when a link is
Internet Explorer seems to return null if the url is outside your current domain. You can work around it by open an empty page first, then navigate the window to the actual url:
var newwindow;
function pop(url)
{
newwindow=window.open('','','height=500,width=532');
newwindow.location = url;
if (window.focus) {newwindow.focus();}
}