// JavaScript Document
// not sure what this script belongs to--- think its an old webcam refresh pic

function holdUp()
{
refreshFreq=5;
setTimeout("freshPic()", refreshFreq*1000);
}

function freshPic()
{
var currentPath=document.campic.src;
var trimmedPath=new Array();
trimmedPath=currentPath.split("?");
document.campic.src = trimmedPath[0] + "?" + Math.random();
//
// Go back and wait again.
holdUp();
}
