function menuLateral(seleccionado,modo){
	if(seleccionado.className!="navegacion_lateral_seleccionado_fijo"){
		seleccionado.className="navegacion_lateral"+modo;
	}
}

function listadoEventos(seleccionado,modo){
	if(seleccionado.className=="eventoListadoRecuadro"){
		seleccionado.className=="eventoListadoRecuadroSeleccionado";
	}else if(seleccionado.className!="eventoListadoSeleccionadoFijo" && seleccionado.className!="eventoListadoRecuadroSeleccionadoFijo" ){
		seleccionado.className="eventoListado"+modo;
	}
}

function nuevoAjax(){
	var xmlhttp=false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");  		// Creaci�n del objeto ajax para navegadores diferentes a Explorer
	} catch (e) {
		try {								// o bien
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");		// Creaci�n del objeto ajax para Explorer
		} catch (E) {
			xmlhttp = false;
		}
	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}

