Citazione:
<script>
function popup () {
largo=300;
alto=200;
posh=Math.floor((screen.height-alto)/2);
posw=Math.floor((screen.width-largo)/2);
window.open("pag_pop.htm","","width="+largo+",heig ht="+alto+",top="+posh+",left="+posw);
}
</script>
</head>
<body>
<p><input type="button" onclick="popup ()"></p>
</body>
</html>
o ancora
Citazione:
window.open(URL,nome," scrollbars=yes,resizable=yes,status=yes,
location=yes,toolbar=yes,width="+largo+",height="+ alto+",top="+posh+",left="+posw);