<html> <head> <script> function openWin() {
window.open("https://www.w3schools.com/","_blank",'width=1024,height=650,scrollbars=yes,menubar=yes,status=yes,resizable=yes,directories=false,location=false,left=0,top=0');
} </script> </head> <body>
<form>
<input type="button" value="Open Window" onclick="openWin()">
</form>
</body> </html>