// JavaScript Document
function Ver_registro(titulo){
	
	document.getElementById("V_titulo").innerHTML = "<p class='load'><img src='tsw/sachampionship/cargando.gif' alt='' width='16' height='16'> Cargando...</p>";
	
	var myConn = new XHConn();
    		    if (!myConn) alert("XMLHTTP no esta disponible. Inténtalo con un navegador más actual.");
	        	var peticion = function (oXML) {  
					
					document.getElementById("V_titulo").innerHTML = oXML.responseText; 
					
				};
     myConn.connect("ArchivosAjax/V_registro.php","post","login="+titulo,peticion);
}