<!--window.name='lno';
var ovrPrimera='#6F7D95';
var outPrimera='#556275';
var ovrCabezal='#808080';
var outCabezal='#5C5C5C';
function mOvr(src,tipo){if (!src.contains(event.fromElement)){src.style.cursor='hand'; src.bgColor=eval('ovr'+tipo)}}function mOut(src,tipo){if (!src.contains(event.toElement)){src.style.cursor='default'; src.bgColor=eval('out'+tipo)}}function mClk(src){if(event.srcElement.tagName=='TD'){src.children.tags('A')[0].click()}}

//ESTAS SON LAS NUEVAS FUNCIONES - 3/12/2009 POR AGUSTÍN.
function mOvr2(id,tipo){
	document.getElementById(id).style.cursor='hand';
	document.getElementById(id).bgColor=eval('ovr'+tipo)
	}

function mOut2(id,tipo){
	document.getElementById(id).style.cursor='default';
	document.getElementById(id).bgColor=eval('out'+tipo)
	}
//TERMINAN AQUÍ