function comprobar(email)   
{  
	//a–adimos la imagen de esperando...
	document.getElementById('masdatos').innerHTML = '<img src="images/loading.gif" style="float:none; width:32px;" />';
	
	var url = 'http://'+location.host+'/comprobar_usuario.php';  

	var pars='email='+email;  

	var myAjax = new Ajax.Updater( 'masdatos', url, { method: 'get', parameters: pars});  
}