Fix the size of a window.

1.- It’s very simple. At the end of the page that you wish to fix the size, put this HTML code. What is in yellow is the width and the height. The first value is the width (450) and the second the height (600).

<html>
<head>
<script language="JavaScript">
window.resizeTo(450,600);
</script>
</head>
</html>