<!--

function openWindow(theURL,winName,features){
	window.open(theURL,winName,features);
}

//
//AJAXCam v0.8b (c) 2005 Douglas Turecek http://www.ajaxcam.com
//
function holdUp() {
	refreshFreq=1;
	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();
	holdUp();
}

-->
