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 $$(el){return document.getElementById(el);}

function Redireccionar(){
  setTimeout ("location.href='http://www.inkawebdesign.com/reportar-pago.php'", 4000);
}

function Refcon() {

  $$('refrescar-contacto-suma').innerHTML = 'Cargando...';
  MiAjax1=objetoAjax();

  var url = "./Ajax-contacto.php";

  MiAjax1.open("POST", url, true);
  MiAjax1.onreadystatechange = function() {
  if (MiAjax1.readyState == 4) {
	  if (MiAjax1.status == 200) {
		var Respuesta = MiAjax1.responseText;
		$$('refrescar-contacto-suma').innerHTML = Respuesta;
	  }
  }
}
  MiAjax1.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
  MiAjax1.send("t=2");
  
}

