Prueba con este
Código Javascript
:
Ver originalfunction URL_Aleatoria(){
url= new Array();
url[0] = "http://www.web1.com";
url[1] = "http://www.web2.com";
aleatorio=Math.floor(Math.random()*url.length); //url.length es el tamaño del array url
alert(url[aleatorio]);
}
var asigURL= setInterval(URL_Aleatoria,1000) //solo pon el nombre de la funcion sin comillas