<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")
function enlaceAleatorio(){
aleat = Math.random() * direcciones.length
aleat = Math.floor(aleat)
window.location=direcciones[aleat]
}
</script>