<!--
function openLive(camera,inverted) {
	window.location.href='inicio.php?area='+camera;
}

function openHistory(camera,date, format) {
	window.location.href='history?camera='+camera+'&date='+date+'&format='+format;
}

function inCell(cell, newstyle) {
	if (!cell.contains(event.fromElement)) {
		cell.className = newstyle;
	}
}

function outCell(cell, newstyle) {
	if (!cell.contains(event.toElement)) {
		cell.className = newstyle; 
	}
} 

function abre(url, w, h) {
	window.open(url,"_blank","status=no,toolbar=no,scrollbars=yes,location=no,menu=-no,width="+w+",height="+h);
}
-->