// JavaScript Document
function entraRaton(elemento)
 {
  	document.getElementById(elemento).className="textoRaton";
 }
function saleRaton(elemento)
 {
  	document.getElementById(elemento).className="texto";
 }
 
	var IE = document.all?true:false;

	function mostrarPestanaActividad(titulo, descripcion, inicio, fin, notas, event){
		/*if (!foto || foto==""){
			foto="default.gif";
		}*/
		if (!IE) 
			document.captureEvents(Event.MOUSEMOVE);
			
		if (IE) { 
			posicX = event.clientX + document.body.scrollLeft +10; 
			posicY = window.event.clientY + document.documentElement.scrollTop+document.body.scrollTop - 25;
		} 
		else { 
			posicX = event.pageX+10;
			posicY = event.pageY-25;
		}
		if (posicX < 0) {posicX = 0;} 
		if (posicY < 0) {posicY = 0;} 
		
		//Generamos el contenido
		texto = "<tr><td><center><strong>"+titulo+"</strong></center></td></tr>";
		//alert(descripcion);
		if(descripcion !="")
			texto += "<tr><td><strong>Descripción: </strong>"+descripcion+"</td></tr>";
		if(inicio !="")
			texto += "<tr><td><strong>Fecha Inicio: </strong>"+inicio+"</td></tr>";
		if(fin !="")
			texto += "<tr><td><strong>Fecha Fin: </strong>"+fin+"</td></tr>";
		if(notas !="")
			texto += "<tr><td><strong>Notas: </strong>"+notas+"</td></tr>";

		document.getElementById("datosPunto").innerHTML  = '<table>'+texto+'</table>';
		document.getElementById("datosPunto").style.display=""; 
		document.getElementById('datosPunto').style.left = posicX+'px';
		document.getElementById('datosPunto').style.top = posicY+'px';

	}
	function ocultarPestanaActividad(){
		document.getElementById("datosPunto").style.display="none"; 
	}
	

