View Single Post
Old 10-05-2004, 19:15   #3
Pestylenzia
Utente sospeso
 
L'Avatar di Pestylenzia
 
Iscritto dal: Aug 2002
Messaggi: 83
...

...
<script language=JavaScript>
function popupippo()
{
screenWidth = window.screen.availWidth;
screenHeight = window.screen.availHeight;

if (screenWidth > 800) {
windowWidth = 860;
windowHeight = screenHeight - 80;
windowLeft = ( screenWidth - windowWidth ) / 2;
windowTop = ( screenHeight - windowHeight ) / 2;
pz=window.open( "index.htm", null, "left=" + windowLeft + ",top=" + windowTop + ",height=" + windowHeight + ",width=" + windowWidth + ",scrollbars=no");
pz.focus();
} else {
windowWidth = 800;
windowHeight = 600;
windowLeft = ( screenWidth - windowWidth ) / 2;
windowTop = ( screenHeight - windowHeight ) / 2;
pz=window.open( "index.htm", null, "left=" + windowLeft + ",top=" + windowTop + ",height=" + windowHeight + ",width=" + windowWidth + ",scrollbars=no");
pz.focus();

}
}
</script>

....

<body onLoad="javascript:popupippo()">

...
Pestylenzia è offline   Rispondi citando il messaggio o parte di esso