cara fiquei atras disso e esse teu tópico me ajudou...se alguém quiser redirecionar sem ter de clicar no link é só alterar o código <html>
<head>
<title>Enlace Aleatorio</title>
<script>
var direcciones = new Array("http://www.terra.com.br", "http://www.google.com.br", "http://www.orkut.com.br");
function enlaceAleatorio(){
aleat = Math.random() * direcciones.length
aleat = Math.floor(aleat)
window.location=direcciones[aleat]
}
</script>
</head>
<body onload="java script:enlaceAleatorio()">
</body>
</html>