A ta place je créerai un second cadre invisible qui contiendrai une page contenant un code js du type:
<script>
//tableau des pages possibles
var tab = new Array();
tab[0] = "page0.html";
tab[1] = "page1.html";
...
nbPage = 10; //nombre de page, 10par exemple
tempsAvantChangementDePage = 10000; //en ms
function recharger(){
parent.nomCadrePrincipale.location.href = tab[Math.round(Math.random()*nbPage)];
setTimeOut(recharger(),tempsAvantChangementDePage);
}
//1er lancement
setTimeOut(recharger(),tempsAvantChangementDePage);
</script>
(non testé)
The SMURF
the_little_smurf@yahoo.fr
Enjoy the life, don't waste your time in front of your computer