function networkitaly() { //
	document.getElementById('networkitaly').style.display = "none";
}
function exitintro() { //
	document.getElementById('intro').style.display = "none";
	document.getElementById('intro').innerHTML = "&nbsp;";
	document.getElementById('sfondocontenitore').style.background = "#AD9961";
}
function cambiafoto(id2){
	 //window.setTimeout( "slideshow()", 5000); // 5000 millisecondi ritardo
	 if (document.getElementById)
	 {
    	var richiamfotopergallery;
		if(window.XMLHttpRequest)
		{
		   richiamfotopergallery = new XMLHttpRequest();
		}
		else if(window.ActiveXObject)
		{
		   richiamfotopergallery = new ActiveXObject("Microsoft.XMLHTTP");
		}
		richiamfotopergallery.open("POST", "/ajax/cambiafoto.asp", true);
		richiamfotopergallery.onreadystatechange = function() 
		{
			if(richiamfotopergallery.readyState == 4)
			{	
				if(richiamfotopergallery.status == 200)
				{
					str = richiamfotopergallery.responseText
					document.getElementById('immagine_gallery').innerHTML = str;
				}
				else if(richiamfotopergallery.status == 500)
				{
					document.getElementById('immagine_gallery').innerHTML = richiamfotopergallery.status + " Errore Raccolta Dati";
				}
				else if(richiamfotopergallery.status == 404)
				{
					document.getElementById('immagine_gallery').innerHTML = richiamfotopergallery.status + " XML Rimosso";
				}
				else
				{
					document.getElementById('immagine_gallery').innerHTML = "Errore Server " + richiamfotopergallery.status;
				}
			}
				else
			{
				document.getElementById('immagine_gallery').innerHTML = "<img src='/layout/wait.gif' />";
			}
		}
		richiamfotopergallery.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
		richiamfotopergallery.send("id2="+id2);
  	 }
}