JavaScript Program to Open a New Window and open YAHOO webpage in it

Write a JavaScript program to open a new window and open yahoo webpage in it.



Source Code
<html>
<head>
    <title>Opening new window using JavaScript</title>
</head>
<body>
    <script>
        secondwindow = open("http://www.yahoo.com", "yahoo", "height=300,width=200, scrollbars=yes")
    </script>
</body>
</html>
Output