Forum Moderators: open
<a href="pagename.html" onClick="openpopup();return false;">link </a>
the popup script is located in a seperate .js file and it works fine, in-so-much as it launches a new window, however in IE6 running on a windows machine, the new page is also loading in the main browser.
it doesn't happen on my mac
Is there something I don't know?
<a href="pagename.html" onclick="javascript:openpopup(); return false;">link </a>
function openpopup(){
var sw = (screen.width - 10);
var sh = (screen.height);
remote = window.open("pagename.html","pagename","toolbar=no,resizable=yes,status=no,scrollbars=no,menubar=no");
remote.moveTo(0,0);
remote.resizeTo(sw,sh);
}