blob: 5774c5d55bf065da63dbf71380801cb0c9f1b1a3 [file] [log] [blame]
<html>
<head>
<title>Popup created using window.open</title>
<script>
function popup(name) {
window.open("popup-success.html",
name, "menubar=1, resizable=1, width=350, height=250");
}
function test() {
popup('mywindow');
popup('_blank');
}
</script>
</head>
<body onload="test()">
pop-up test page
</body>
</html>