/*
WEBCAM Hotel Abba Playa Gijón
*/


var BaseURL = "mms://62.97.118.233:5000/Gijon";
var Camera = "";
var ImageResolution = "320x240";
var DisplayWidth = "320";
var DisplayHeight = "240";
var output = "";
var File = "axis-cgi/jpg/image.cgi?resolution=" + ImageResolution;

//precarga de webcam
function loadwebcam() {
	if (Camera != "") {File += "&camera=" + Camera;}
	curdate = new Date();
	output = "<img src=\"";
	output += BaseURL;
	output += File;
	output += "&dummy=";
	output += curdate.getTime().toString(10);
	output += "\" height=\"";
	output += DisplayHeight;
	output += "\" width=\"";
	output += DisplayWidth;
	output += "\" alt=\"webcam\" name=\"webcam\">";
	
	setTimeout('reloadImage()',30000);	
}

//inicializamos precarga de webcam
loadwebcam();

//poniendo webcam
function putwebcam(){
	document.write(output);
}

function reloadImage() {
	var nowdate = new Date();
	if (document.images) { 
		document.images.webcam.src = BaseURL + File + '&dummy=' + nowdate.getTime().toString(10);
		setTimeout('reloadImage()',30000);
	}
}

<!-- FIN DE CODIGO WEBCAM -->