// JavaScript Document
function Richiesta(url,divID,divID2) {
var richiestaHTTP;
		
		if (divID!="") {
		document.getElementById(divID).innerHTML="Attendere....";
		}
	
if ((navigator.userAgent).toUpperCase().indexOf("MSIE") != (-1)){
var Classe = "Msxml2.XMLHTTP";

if ((navigator.appVersion).toUpperCase().indexOf("MSIE 5.5") != (-1));{
Classe = "Microsoft.XMLHTTP";
}
	
	richiestaHTTP=new ActiveXObject(Classe);
	
}

if ((navigator.userAgent).toUpperCase().indexOf("MOZILLA") != (-1)){
	
	richiestaHTTP = new XMLHttpRequest();
	
}


//************************************************************************se invio con post
//richiestaHTTP.open("GET",url,true);
//richiestaHTTP.setRequestHeader("content-type", "application/x-www-form-urlencoded");
//richiestaHTTP.setRequestHeader("connection", "close");
//richiestaHTTP.send("variabile=Prova");
//*****************************************************************************************


richiestaHTTP.open("GET",url,true);
richiestaHTTP.setRequestHeader("connection", "close");


richiestaHTTP.onreadystatechange =function () {

if(richiestaHTTP.readyState==4 && divID!=""){
	document.getElementById(divID).innerHTML=richiestaHTTP.responseText;
}

}

richiestaHTTP.send(null);

}


function cambia_div(div1,div2){
document.getElementById(div1).style.display='none';
document.getElementById(div2).style.display='';	
}

function mostra_foto(foto) {
	document.getElementById('fotoB').innerHTML="<img src='"+foto+"' width='220'style='border: 2px solid #7C0101;'>";
}
