If you are wanting to open a second window for this, it should be relatively simple. Except, the browser will not display a file named c1 as html. so rename your files to like c1.htm, etc.
Code:
<html>
<head>
<title>Open Window Slide - Demo</title>
</head>
<body>
<script type="text/javascript">
var i=2, happen, winDow
function begin(){
winDow=window.open('C:\Datah2\Nasdaq100\MSSmart\c1.htm','slideWin')
happen=setInterval("slideIt()",3000) //3000 is the delay in milliseconds
}
function slideIt(){
var file='C:\Datah2\Nasdaq100\MSSmart\c'+i+'.htm'
window.open(file,'slideWin')
i++
if (i>100)
i=1
}
</script>
<input type="button" value="Begin" onclick="begin();"><br>
<input type="button" value="End" onclick="clearInterval(happen);winDow.close()">
</body>
</html>
Bookmarks