You certainly can use a Web programming application like Dreamweaver or Microsoft Expression to do this, but to keep things as simple as possible, create this little program using Notepad or another text editor. First, create a basic HTML page with some text on it. If you already have one that you want to experiment on then skip this step. Otherwise, type the lines below in Notepad and save it with a file name “Main_Window.html” replacing the default txt extension with html. Also, delete the **** beginning the Javascript line. It is there only to keep the script from executing in this article.
<HTML>
<HEAD></HEAD>
<BODY>
This will be my main page.
****<SCRIPT LANGUAGE=”javascript”>
window.open ('New_Window', 'pageone', config='height=250,width=250')
</SCRIPT>
</BODY>
</HTML>
Note: Do not leave spaces between the height and width definitions.