function mOver(elemento,colorebg,coloretesto){
	elemento.style.backgroundColor=colorebg;
	elemento.style.cursor = 'hand';
	elemento.children.tags('A')[0].style.color=coloretesto;
}
		
function mOut(elemento,colorebg,coloretesto){
	elemento.style.backgroundColor=colorebg;
	elemento.style.cursor = 'default';
	elemento.children.tags('A')[0].style.color=coloretesto;
}
	
function onClk(elemento){ 
	if(event.srcElement.tagName=='TD'){
		elemento.children.tags('A')[0].click(); 
	}
}
