function fnEnciendeRow(src,clrOver) {
	 if (!src.contains(event.fromElement)) {
		 src.style.cursor = 'hand';
		 src.bgColor = clrOver;
		 src.style.border='1 solid';
		 
	 }
}

function fnApagaRow(src,clrIn) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'hand';
		src.bgColor = clrIn;
		src.style.border='0';
	}
}

function fnCambiaBg (src,bg) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'hand';
		src.backGround = bg;
	}

}
