Just call the window.open twice:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>Untitled Page</title>
<script type="text/javascript"><!--
function go() {
window.open("http://www.google.com","win1","");
window.open("http://www.yahoo.com","win2","");
}
//-->
</script>
</head>
<body bgcolor="#ffffff">
<p><a href="#" onclick="go();">Click</a></p>
</body>
</html>
|