// JavaScript Document
function menu_precarga(){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 cargar_info(pagesel){
		divResultado2 = document.getElementById('contenido-info');
		ajax2=menu_precarga();
        ajax2.open("GET", "infointro/"+pagesel,true);
		ajax2.onreadystatechange=function() {
			if (ajax2.readyState==4) {
				divResultado2.innerHTML="L o a d i n g . . .";
			}	
			if (ajax2.readyState==4) {
				divResultado2.innerHTML = ajax2.responseText;
			}
		}
		ajax2.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		ajax2.send(null);
	}
