//verifica disponibilità nome utente
var xmlHttp;

function CreateXMLhttpRequest()
{
	if (window.ActiveXObject)
	{
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	else if (window.XMLHttpRequest)
	{
		xmlHttp = new XMLHttpRequest();
	}
}

function verifica(ajax_url)
{
	CreateXMLhttpRequest();
	xmlHttp.onreadystatechange= handleStateChange;
	xmlHttp.open("GET",ajax_url,true); 
	xmlHttp.send(null);
}

function handleStateChange()
{
	var stringa_2;
	stringa_2="";
	if (xmlHttp.readyState==4)
	{
		if (xmlHttp.status == 200)
		{
			stringa_2=xmlHttp.responseText;
			elemento = document.getElementById('disponibilita'); //scrive nel div ricerca
			elemento.innerHTML = stringa_2;
			}
		}	
	}
