Forum Moderators: open
<script language=javascript>
function openWind(windlocation, windheight, windwidth,
windtop, windleft){
var windposition='width='+windwidth+',height='+windheight+',top='+windtop+',left='+windleft;
var NewWindow = window.open(windlocation,'wind',windposition);
if (NewWindow.focus!=null){
NewWindow.focus();
}
}
</script>
</head>
<body>
<a href="same.php" onclick= "openWind("childWind.php",400,410,.5*(screen.height-400),.5*(screen.width-410))" > Link </a>
</body>