F52 (Pass): Due to opening a new window as soon as a new page is loaded

HTML Snippet Code
Scenario 1: New window is opened only when the link is activated
Click this link to initiate an action <a href="#" onclick="showAdvertisement1()"> Click this link to initiate an action </a> <script> function showAdvertisement1() { window.open('http://www.deque.com', '_blank', 'height=200,width=150'); } </script>