
Originally Posted by
Jay
Thanks moogle but I don't really want to give that info out, I hope you understand?
If you post the code up I can mod it myself though

Yeah no probs. Here's what I got so far. I stopped halfway cos it was bedtime! 
Code:
// JavaScript Document
var timer=5 //Seconds to show the page.
var pagelist='page1.htm,page2.htm,page3.htm'
var page=pagelist.split(',');
var pages=page.length;
var x=0;
start();
setInterval('start()', timer*1000);
function start() {
document.getElementByName("frame").src=page[x];
x++;
}
Still trying to make that iframe change. I'll post up the fully working code when I got it