// JavaScript Document
	function nuevoAjax(){
		var xmlhttp=false;
		try {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (E) {
				xmlhttp = false;
			}
		}
	
		if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
			xmlhttp = new XMLHttpRequest();
		}
		return xmlhttp;
	}
	
	function cargarInformacion(informacion){
		var informacionutil;
		informacionutil = document.getElementById('informacionutil');
		ajax=nuevoAjax();
		ajax.open("GET", "includes/generar-informacion.php?id="+informacion,true);
		ajax.onreadystatechange=function() {
			if (ajax.readyState==4) {
			informacionutil.innerHTML = ajax.responseText
			}
		}
		ajax.send(null)
	}