1<!DOCTYPE html>
2<html>
3<body>
4
5<button onclick="openWin()">Open "myWindow"</button>
6<button onclick="closeWin()">Close "myWindow"</button>
7
8<script>
9var myWindow;
10
11function openWin() {
12 myWindow = window.open("", "myWindow", "width=200,height=100");
13 myWindow.document.write("<p>This is 'myWindow'</p>");
14}
15
16function closeWin() {
17 myWindow.close();
18}
19</script>
20
21</body>
22</html>
23