este es el código que uso para el rotador de URLs:
Código:
<html> <head> <script> function ini() { var direcciones = new Array("web1.html", "web2.html", "web3.html") aleat = Math.random() * direcciones.length; aleat = Math.floor(aleat); prueba.location=direcciones[aleat]; } </script> </head> <body onload="ini()"> <iframe name="prueba" width="100%" height="100%"></iframe> </body> </html>