Forum Moderators: open
<head><script>
function open_win()
{
window.open("http://www.google.com");
window.open("http://www.bing.com");
}
</script>
</head>
<body onload="open_win()">
<input type="button" value="Open Windows" onclick="open_win()">
</body>