ciao, ho provato ad adattare il codice per un pop up per aprire 4 pop up, ma cosi facendo mi apre solo il primo..
come mai?
nel head-----------
<script>
function popup1()
{
setTimeout("window.open('news1.html','newWin','scr ollbars=no,status=no,resizable=no,top=0,left=0,wid th=200,height=200');",20000);
}
function popup2()
{
setTimeout("window.open('news2.html','newWin','scr ollbars=no,status=no,resizable=no,top=700,left=0,w idth=200,height=200');",20000);
}
function popup3()
{
setTimeout("window.open('news3.html','newWin','scr ollbars=no,status=no,resizable=no,top=700,left=850 ,width=200,height=200');",20000);
}
function popup4()
{
setTimeout("window.open('news4.html','newWin','scr ollbars=no,status=no,resizable=no,top=0,left=850,w idth=200,height=200');",20000);
}
</script
nel body ----------------------
<body onload="popup1()","popup2()","popup3()","popup4()"
</body>
![]()