javascript popup does not stay on top
I am using the following for a pop up window from asp. It does not stay on top??? Help how can i get it to stay on top.
function popUp() {
URL = "test.asp"
newwindow=window.open(URL,'name','height=400,width =500');
newwindow.opener = top;
newwindow.focus()
}
|