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