<html>
<head>
<script>
function openWin() {
window.open("https://www.w3schools.com/");
window.open("http://www.microsoft.com/");
}
</script>
</head>
<body>
<form>
<input type="button" value="Open Windows" onclick="openWin()">
</form>
</body>
</html>