Hello,

I have a page which looks like below:

Code:
<html>

<head>
<title>New Page 1</title>
</head>

<body>

<div>Test1</div>
<div>Test2</div>
<div>Test3</div>

</body>

</html>
and basicly what I want is, I want to be able to every 5 seconds go and refresh the Div parts.

For Example:
in the <div>Test1</div> part I want page1.html to appear and refresh every 5 seconds

in the <div>Test2</div> part I want page2.html to appear and refresh every 5 seconds

in the <div>Test3</div> part I want page3.html to appear and refresh every 5 seconds

anyone know how to do this.

I am only using Javascript (I am not using PHP or ASP)

Thanks.