function load(src)
{
	window.status = "LOADING...";
	var img  = new Image();
	img.random = Math.round((Math.random()*100000)+1);
	img.onload = function () { swap(img); }
	img.src = src+'?'+img.random;
}

function swap(img)
{
	window.status = "... " + img.src;
	//document.getElementById("webcam").setAttribute("src","http://www.google.it/intl/it_it/images/logo.gif");
	document.getElementById("webcam").setAttribute("src",img.src);
	//document.images.webcam.src="http://66.49.176.155/pixelup.it/webcam/cam10.jpg";
}

function init()
{
	window.setInterval("load('http://www.divingcontrol.com/cam6.jpg')", 3000)
}

onload=init;