Hola
jota2
Esto funciona bien, sólo tienes que adaptarlo a tus necesidades:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Abrir ventanas con un solo click</title>
<script type="text/javascript">
function leerprensa() {
window.open('http://www.elpais.com','elpais','left=0,top=0');
window.open('http://www.elmundo.es','elmundo','left=0,top=0');
window.open('http://www.clarin.com/','clarin','left=0,top=0');
window.open('http://fastflip.googlelabs.com/','fastflip','left=0,top=0');
}
</script>
</head>
<body>
<div id="prensa">
<p>Periódicos:</p>
<p>El Pais</p>
<p>El Mundo</p>
<p>Clarín</p>
<p>Recopilatorio de prensa</p>
<a href="javascript:leerprensa()">Abrir todos</a>
</div>
</body>
</html>
Saludos, bye