Ver Mensaje Individual
  #8 (permalink)  
Antiguo 14/09/2005, 10:05
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Hola Snake nS

Veamos si te sirve este ejemplillo:
Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
abrir(url) {
  
ventana=window.open(url,'ventana');
  
ventana.focus();
}
</script>
</head>
<body>
<a href="#" onclick="abrir('pagina1.html'); return false">Uno</a>
<a href="#" onclick="abrir('pagina2.html'); return false">Dos</a>
</body>
</html> 
Saludos, :adios.