Flipping through web pages using a batch file... :LOOP ECHO ^<!--#include virtual="http://server/page.htm"--^> > R:\Slide.ASP ECHO ^<meta http-equiv="refresh" content="5"^> >> R:\Slide.Asp SLEEP 5 ECHO ^<!--#include virtual="http://server/page2.asp"--^> > R:\Slide.ASP ECHO ^<meta http-equiv="refresh" content="5"^> >> R:\Slide.Asp SLEEP 5 ECHO ^<!--#include virtual="http://server/page3.htm"--^> > R:\Slide.ASP ECHO ^<meta http-equiv="refresh" content="5"^> >> R:\Slide.Asp SLEEP 5 ECHO ^<!--#include virtual="http://server/page4.asp"--^> > R:\Slide.ASP ECHO ^<meta http-equiv="refresh" content="5"^> >> R:\Slide.Asp SLEEP 5 Goto Loop
Run this batch file on your web server at startup. Change the "5"s to any amount you want to change the delay time. If you don't have sleep.exe, use "ping -n 6 127.0.0.1" for the pauses (make the 6 your delay time +1) I don't know if you can do this with javascript, but you can have variable delay times with this script. Robb Fesig To unsubscribe from a list, send a mail message to [EMAIL PROTECTED] With the following in the body of the message: unsubscribe SAlive
