Example 1 Open a new window, and resize it to 300 x 300: functionopenWin() { myWindow = window.open("","","width=200, height=100"); } functionresizeWin() { myWindow.resizeTo(300,300); } Try it Yourself » More examples below. ...