var IE = document.all?true:false
if (!IE) document.captureEvents(Event.MOUSEMOVE)

document.onmousemove = posicRatonXY;
var posicX = 0
var posicY = 0

function posicRatonXY(e) {
	if (IE) { posicX = event.clientX + document.body.scrollLeft;
	posicY = event.clientY + document.body.scrollTop}
	else { posicX = e.pageX; posicY = e.pageY };
	if (posicX < 0) {posicX = 0};
	if (posicY < 0) {posicY = 0};

	return true
} 

function mostrarCapa(provincia, numero){

	document.getElementById('capa1').style.top = posicY;
	document.getElementById('capa1').style.left = posicX;

	if(document.all){
		 document.getElementById('capa1').innerText = provincia + " (" + numero + ")";
	} else{
		document.getElementById('capa1').textContent = provincia + " (" + numero + ")";
	}

	document.getElementById('capa1').style.visibility="visible"; 
}

function ocultarCapa(){
	document.getElementById('capa1').style.visibility="hidden"; 
}

