// DETECTOR DE BROWSER //
	var dom = document.getElementById ? true:false;
	var nn4 = document.layers ? true:false;
	var ie4 = document.all ? true:false;

// MOSEOVER DE CELDAS //

//CELDA BORDO
	function OvrCelda01(src) {
		if (ie4){
			if (!src.contains(event.fromElement)) {
			src.style.cursor = 'hand';
			src.style.backgroundColor = '#931D0D';
			}
		}
	}

	function OutCelda01(src) {
		if (ie4){
			if (!src.contains(event.toElement)) {
			src.style.cursor = 'default';
			src.style.backgroundColor = '#B30E2A';
			}
		}
	}

	function ClkCelda(src) {
		if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
		}
	}

//CELDA GRIS
	function OvrCelda02(src) {
		if (ie4){
			if (!src.contains(event.fromElement)) {
			src.style.cursor = 'hand';
			src.style.backgroundColor = '#B9B9B9';
			}
		}
	}

	function OutCelda02(src) {
		if (ie4){
			if (!src.contains(event.toElement)) {
			src.style.cursor = 'default';
			src.style.backgroundColor = '#A2A2A2';
			}
		}
	}
	
//CELDA AZUL
	function OvrCelda03(src) {
		if (ie4){
			if (!src.contains(event.fromElement)) {
			src.style.cursor = 'hand';
			src.style.backgroundColor = '#286B9C';
			}
		}
	}

	function OutCelda03(src) {
		if (ie4){
			if (!src.contains(event.toElement)) {
			src.style.cursor = 'default';
			src.style.backgroundColor = '#3B80B2';
			}
		}
	}
	

//CELDA VERDE
	function OvrCelda04(src) {
		if (ie4){
			if (!src.contains(event.fromElement)) {
			src.style.cursor = 'hand';
			src.style.backgroundColor = '#41861C';
			}
		}
	}

	function OutCelda04(src) {
		if (ie4){
			if (!src.contains(event.toElement)) {
			src.style.cursor = 'default';
			src.style.backgroundColor = '#58A42F';
			}
		}
	}

	
//CELDA AMARILLO
	function OvrCelda05(src) {
		if (ie4){
			if (!src.contains(event.fromElement)) {
			src.style.cursor = 'hand';
			src.style.backgroundColor = '#DE8D17';
			}
		}
	}

	function OutCelda05(src) {
		if (ie4){
			if (!src.contains(event.toElement)) {
			src.style.cursor = 'default';
			src.style.backgroundColor = '#F1A331';
			}
		}
	}

	function ClkCelda(src) {
		if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
		}
	}


//CELDA VERDE CLARO
	function OvrCelda06(src) {
		if (ie4){
			if (!src.contains(event.fromElement)) {
			src.style.cursor = 'hand';
			src.style.backgroundColor = '#25A2A1';
			}
		}
	}

	function OutCelda06(src) {
		if (ie4){
			if (!src.contains(event.toElement)) {
			src.style.cursor = 'default';
			src.style.backgroundColor = '#39B4B3';
			}
		}
	}

	function ClkCelda(src) {
		if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
		}
	}
