If you are using this:
Code:
function goNewWin() {
TheNewWin =window.open("http://www.yahoo.com",'TheNewpop','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
TheNewWin.blur();
TheNewWin.close();
}
But, as I mentioned in that thread, it will not work in IE 7.
However, in that thread you claimed you had no control over the pages in the new window. If they are the pages from your other site, you should. You can have script on those pages to close the window onload. Now, you might wonder, how can this page ever be seen then? As long as the window isn't opened with javascript, it cannot be closed with javascript.
Bookmarks