Quote:
Originally Posted by lbazso
I am still looking for a script. If anyone can help, it would be greatly appreciated. Thanks! 
|
Never mind. I have found one and it works:
Code:
<script type="text/javascript">
var urls = new Array("http://www.url1.com/", "http://www.url2.com/");
function redirect()
{
window.location = urls[Math.floor(urls.length*Math.random())];
}
var temp = setInterval("redirect()", 1000);
</script>