Podes probar asi decime si te sirve:
    
Código Javascript
:
Ver original<script type="text/javascript"> 
INDICE = 0;
DURACION = 2; // Segundos
PAGINAS = ["http://www.google.com","http://www.hotmail.com","http://www.wikipedia.org","http://www.forosdelweb.com"];
function cambiaUrl() {
    if (INDICE == PAGINAS.length) {
        INDICE = 0;
    }
    window.open(PAGINAS[INDICE],"_BLANK");
    INDICE ++;
    setTimeout("cambiaUrl()",DURACION * 1000);
}
</script>