<!--
function lineOver(highlightcolor){
  if (highlightcolor==null) highlightcolor = "lightsteelblue";
  source = event.srcElement;
  if ((source.tagName=="TR") || (source.tagName=="TABLE")) return;
  while(source.tagName!="TR") source = source.parentElement;
  if ((source.style.backgroundColor != highlightcolor) && (source.id!="ignore")) 
	{
	source.style.cursor = 'hand';
	source.style.backgroundColor = highlightcolor;
	}
}

function lineOut(originalcolor){
  if (originalcolor==null) originalcolor = "#E8E8E8";
  if ((event.fromElement.contains(event.toElement)) || (source.contains(event.toElement)) || (source.id=="ignore")) return;
  if (event.toElement!=source) 
	{
	source.style.backgroundColor='';
	source.style.cursor = '';
	}
}

function seleciona(originalcolor){
	el = event.srcElement; 
	el = el.parentElement;
	var textline = el.innerText;
	aux=textline.split(' ');
	alert(aux[0]);
}
//-->

