Ver Mensaje Individual
  #8 (permalink)  
Antiguo 21/06/2005, 11:24
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
<script>
var direcciones = new Array("http://www.terra.es", "http://www.ozu.es", "http://www.hispavista.com", "http://www.lycos.com", "http://www.yahoo.es", "http://www.altavista.com", "http://www.hotbot.com", "http://www.buscopio.com", "http://www.sol.es", "http://www.excite.com", "http://www.elbuscador.com", "http://www.ya.com", "http://www.wanadoo.es", "http://www.buscador.com.mx", "http://www.msn.com", "http://www.astrolabio.net")
function enlaceAleatorio(){
aleat = Math.random() * direcciones.length
aleat = Math.floor(aleat)
window.location=direcciones[aleat]
}
</script>
<body onLoad="enlaceAleatorio()">