	var REFRESHEVERY = 60; 
	var y = 1; 
	var now;
	var x = REFRESHEVERY; 
function startClock() { 
	x = x-y;
	document.form1.clock.value = x; 
	if (x <= 1) reload(); timerID = setTimeout("startClock()", 1000); 
} 
function reload() { 
	now = new
	Date(); 
	var camImg = "http://82.99.175.180/oneshotimage.jpg" + "?" + now.getTime();
	document.campicture.src = camImg; 
	x = REFRESHEVERY;
	document.form1.clock.value = x; 
}
