function fMostrarNotaContacto( evt, fichaNombre, fichaServicios, fichaValor){
	if( evt.pageX ){ // Mozilla
		x = evt.pageX - 25;
		y = evt.pageY + 25;
	} else if( evt.clientX ){ // IE
		x = evt.clientX - 25 + document.body.parentNode.scrollLeft;
		y = evt.clientY + 25 + document.body.parentNode.scrollTop;
	}
	with( document.getElementById( 'notaContacto' ) ){
		style.left = x + 'px';
		style.top = y + 'px';
		style.display = 'block';
	}
	if( fichaNombre.length > 2 ){
		document.getElementById( 'notaContactoNombre' ).textContent = fichaNombre;
		document.getElementById( 'notaContactoNombre' ).innerText = fichaNombre;
		document.getElementById( 'notaContactoNombre' ).style.display = 'block';
	} else {
		document.getElementById( 'notaContactoNombre' ).style.display = 'none';
	}
	if( fichaServicios.length != 1 ){
		document.getElementById( 'notaContactoServicios' ).textContent = fichaServicios;
		document.getElementById( 'notaContactoServicios' ).innerText = fichaServicios;
		document.getElementById( 'notaContactoServicios' ).style.display = 'block';
	} else {
		document.getElementById( 'notaContactoServicios' ).style.display = 'none';
	}
	if( fichaValor.length > 2 ){
		document.getElementById( 'notaContactoValor' ).textContent = fichaValor;
		document.getElementById( 'notaContactoValor' ).innerText = fichaValor;
		document.getElementById( 'notaContactoValor' ).style.display = 'block';
	} else {
		document.getElementById( 'notaContactoValor' ).style.display = 'none';
	}
}

function fOcultarNotaContacto(){
	document.getElementById( 'notaContacto' ).style.display = 'none';
}
