Hi, I need to open a pop under window when users click a button on my website. So far the code I have is: function goNewWin() { TheNewWin = window.open("popunderexample.html",'TheNewpop','toolbar=1, location=1,directories=1,status=1,menubar=1, scrollbars=1,resizable=1'); TheNewWin.blur(); } But it opens a pop up, what I need is a pop under Thanks, GFX