Drake21
03-11-2005, 08:46 PM
I am trying to write an HTML file that will call a pop-under which will contain a java applet. As of now it will pop-under 50% of the time. The code I am using I have seen on numerous sites so it must be a problem on my end.
This is from my main html page:
var popunder="popup.html"
function loadpopunder(){
win2=window.open(popunder,"",winfeatures)
win2.blur()
window.focus()
}
loadpopunder();
It will call a simple html file that only calls an applet. It is not possible for me to modify the applet in anyway. If I run these files without the applet, then the pop-under will always appear under my first html page. Any suggestions?
Thank-you
This is from my main html page:
var popunder="popup.html"
function loadpopunder(){
win2=window.open(popunder,"",winfeatures)
win2.blur()
window.focus()
}
loadpopunder();
It will call a simple html file that only calls an applet. It is not possible for me to modify the applet in anyway. If I run these files without the applet, then the pop-under will always appear under my first html page. Any suggestions?
Thank-you