function objetoAjax()
{ 
	var req;
	req = false;
    if(window.XMLHttpRequest) {
    	try {
			req = new XMLHttpRequest();
        } catch(e) {
			req = false;
        }
    } else if(window.ActiveXObject) {
       	try {
        	req = new ActiveXObject("Msxml2.XMLHTTP");
      	} catch(e) {
        	try {
          		req = new ActiveXObject("Microsoft.XMLHTTP");
        	} catch(e) {
          		req = false;
        	}
		}
    }
	return req;
}

function Valida(usuario){
	divContenido = document.getElementById('usuario');
	ajax=objetoAjax();
	ajax.open("GET", "ajax/proceso_usuario.php?usu="+usuario);
	divContenido.innerHTML= "<strong class='style10'>Verifying</strong>";
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			divContenido.innerHTML = ajax.responseText
		}
	}
	ajax.send(null)
}