Mi ritrovo questo script guarda se fa al caso tuo
codice:
<html>
<head>
<title>Nessun titolo</title>
<script language="JavaScript">
<!--
function win_open(windowWidth, windowHeight, targetWidth, targetHeight, widthMod, heightMod)
{
if (windowWidth < targetWidth)
windowWidth += widthMod;
if (windowHeight < targetHeight)
windowHeight += heightMod;
windowLeft = (screen.availWidth / 2) - (windowWidth / 2);
windowTop = (screen.availHeight / 2) - (windowHeight / 2);
top.window.resizeTo(windowWidth,windowHeight);
top.window.moveTo(windowLeft, windowTop);
if (windowWidth < targetWidth || windowHeight < targetHeight)
setTimeout('win_open(' + windowWidth + ', ' + windowHeight + ', ' + targetWidth + ', ' + targetHeight + ', ' + widthMod + ', ' + heightMod + ');',10);
}
// -->
</script>
</head>
<body bgcolor="#00FF66" text="black" link="blue" vlink="purple" alink="red" OnLoad="win_open(10, 10, 400, 400, 2, 2);">
</body>
</html>
Ciao