Originariamente inviato da Dennis
prova... cosi...
menu puo essere yes o no, un po come scroll
<script language="javascript">
var win = null;
function NewWindow(mypage,myname,w,h,t,l,scroll,menu) {
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/6 : 0;
T = TopPosition + t;
L = LeftPosition + l;
settings = 'height=' + h + ',width=' + w + ',top=' + T + ',left=' + L + ',scrollbars=' + scroll + ',resizable=no,menubar='+menu;
win = window.open(mypage,myname,settings)}
</script>