|
...
...
<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()">
...
|