I have a question concerning this javascript code that is used to create a pop-up window to display photos:
newWind=window.open("","winnam"
;
output="<HTML><BODY> blah blah blah </BODY></HTML>"
newWind.document.write(output);
newWind.document.close();
newWind.focus();
The focus command for the popup window works in all browser versions except in the new IE browser for AOL under Windows XP. In that browser version, the popup window doesn't get the focus and ends up behind the main browser window. Any suggestions to correct this?
Thanks!
newWind=window.open("","winnam"
output="<HTML><BODY> blah blah blah </BODY></HTML>"
newWind.document.write(output);
newWind.document.close();
newWind.focus();
The focus command for the popup window works in all browser versions except in the new IE browser for AOL under Windows XP. In that browser version, the popup window doesn't get the focus and ends up behind the main browser window. Any suggestions to correct this?
Thanks!