Mmm Javascript.
Kod:
<html>
<head>
<script type="text/javascript">
<!--
function openWindows()
{
var urls = new Array(
// edit urls here, don't forget to add
// a comma at the end of the line (except
// the last line, that is)
"http://www.wn.se",
"http://www.aktieforum.se"
);
for( var i = 1; i < urls.length; i++ ) {
window.open(urls[i], '');
}
// open the first url in the first opened window
this.location = urls[0];
}
// -->
</script>
</head>
<body onload="javascript:openWindows();">
</body>
Tack Dav1d.