function getXMLHTTPRequest() {

try {
req = new XMLHttpRequest(); /* p.e. Firefox */
} catch(e) {
  try {
  req = new ActiveXObject("Msxml2.XMLHTTP");
  /* algunas versiones IE */
  } catch (e) {
    try {
    req = new ActiveXObject("Microsoft.XMLHTTP");
    /* algunas versiones IE */
    } catch (E) {
      req = false;
    }
  }
}
return req;

}
var http = getXMLHTTPRequest();


function carga_paso_metod(paso) {
	
   var myurl = 'includes/'+paso+'.php';
  
   var modurl = myurl;

   http.open("GET", modurl, true);
   http.onreadystatechange = useHttpResponseMetod;
   http.send(null);
}



function useHttpResponseMetod() {
	
	
   //Selecciona el div donde ira todo el contenido que se obtenga
   var area = document.getElementById("metodcontent");
   
   if (http.readyState == 4) {
	   if(http.status == 200) {
		   
		//Mete en el div contenido, el contenido de la pagina consultada
	    area.innerHTML = http.responseText;
	   }
	}
  else
  {
	  area.innerHTML = '<img src="imagenes/cargando.gif" style="position:absolute;left:44%;top:33%;" />';
  }
}

