iUrl = "http://217.77.143.168/axis-cgi/jpg/image.cgi";
iName = "webcamveerhaven";

function playingImage() {
	setTimeout("document.getElementById(iName).src = '' +iUrl + '?' + Math.random();", 20);
}
function playImage() {
	//window.status = "Playing webcam.";
	document.getElementById(iName).onload = playingImage;
	//document.getElementById(iName).onerror = playingImage;
	playingImage(iUrl,iName);
	setTimeout("stopImage();", 90000);
	document.getElementById('play'+iName).style.display = 'none';
	document.getElementById('pause'+iName).style.display = 'block';
}
function stopImage() {
	if (iName != null){
		document.getElementById(iName).onload='';
		document.getElementById(iName).onerror = '';
		document.getElementById('play'+iName).style.display = 'block';
		document.getElementById('pause'+iName).style.display = 'none';
		window.status = "";	
		document.getElementById(iName).src = "" +iUrl + "?" + Math.random();
	}
}
