Looks like the problem is the browser (IE)
So, me think it's better making a little 'reload' of the BG when opening the pop up.
To open the pop up I had this:
code:
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=600,height=600,left = 212,top = 0');");
}
And we (in www.forosdelweb.com) add the little thing to make the layers have a BG when poping up:
code:
var imagen = new Image()
imagen.src = "http://www.artreves.com/wakk/imagenes/wakkback.jpg"
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=600,height=600,left = 212,top = 0');");
for(z=0;z<layers.length;z++)
document.getElementById(layers[z]).style.backgroundImage="url("+imagen.src+")"
}
And now works cool!!!
=)
[This message has been edited by Wakkos (edited 07-31-2002).]