function objetoAjax(){
	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 Hola(){
	
	cuerpoDiv   = document.getElementById("Zona");
	cuerpoDiv.innerHTML = imaCargar();
	
	carg=objetoAjax();
	carg.open("POST", "aspx/Alcalde.aspx", true);
	carg.onreadystatechange=function() {
		if (carg.readyState==4) {
			cuerpoDiv.innerHTML = carg.responseText;
		}
	}
	carg.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	carg.send("")
//carg.send("clave="+clave+"& clave="+clave);
}


