Hmmmm, it doesn't seem to work though.
// Define our timer updater and logic for loading the webcam jpeg
function webcam() {
seconds-=1;
if(seconds<0) {
loadMovie("http://priorahost.com/cam/cam_1.jpg", "webcamClip");
seconds=1;
status="REFRESHING...";
}
}
// Load up the image one time to get it going.
loadMovie("http://priorahost.com/cam/cam_1.jpg", "webcamClip");
// Every 1000 milliseconds, or whole second, call the webcam function
// this updates the timer display and when its less than zero, update the image.
setInterval(webcam,1000);
stop();