Click to See Complete Forum and Search --> : changing a pop up to a pop under


bulletmedia
03-06-2003, 12:18 PM
I have a delayed pop-up code that I would like to change to a pop-under. Does any one have a suggestion on the easiest way to make this change?

Dan Drillich
03-06-2003, 04:32 PM
I guess you mean -


function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT;
preview = window.open(URL, "preview", windowprops);
// New line below -
preview.blur();
if (closetime) setTimeout("preview.close();", closetime*1000);
}