	// funzione per scegliere il giusto oggetto di richiesta HTTP in funzione del browser
		function getXMLHttp() {
            var xmlhttp = null;
            if (window.ActiveXObject) {
              if (navigator.userAgent.toLowerCase().indexOf("msie 5") != -1) {
              xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
              } else {
                xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
              }
            }
            if (!xmlhttp && typeof(XMLHttpRequest) != 'undefined') {
              xmlhttp = new XMLHttpRequest()
            }
            return xmlhttp
        }
