//naviga filmati
var xmlHttp;

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

//naviga filmati
function listafilmati(ajax_url)
{
	CreateXMLhttpRequest();
	xmlHttp.onreadystatechange= function() {
	  if(xmlHttp.readyState === 4) {
	  if(xmlHttp.status == 200)
		contenuto=xmlHttp.responseText;
		contenitore = document.getElementById('sfoglia_filmati'); 
		contenitore.innerHTML = contenuto;
	  }
	}
	xmlHttp.open("GET",ajax_url,true); 
	xmlHttp.send(null);
}