Resize existing window
Set width, height, position of an existing opened window
Use Javascript resizeTo() and moveTo() function.
Example
<html>
<head>
<title>Resize Page</title>
<script language=”javascript”>
<!–
function resizeWindow()
{
this.moveTo(0,0);
this.resizeTo(300,300);
}
//–>
</script>
<body bgcolor=”#999999″ onLoad=”resizeWindow();”>
Hello There
</body>
</html>