Haciendo un apaño rapido...
Código:
<html>
<head>
<script language="javascript">
<!--//
function abrir_ventana(direcciones) {
var total = direcciones.length;
alert(total);
x=0;
for(x=0;x<total;x++){
var ventana = window.open('"'+direcciones[x]+'"', "pagina"+x, "width=400, height=400, status=no, scrollbars=no, toolbars=no, menubar=no");
}
}
//-->
</script>
</head>
<body>
<a href="javascript:abrir_ventana(['pagina1.htm','pagina2.htm','pagina3.htm'])">Abre</a>
</body>
</html>
en el enlace, entre corchetes y separado por , puedes poner las paginas que te de la gana q las abrira todas.. 1, 2 , 3... N , ok?