    
    /* Istanzia l'oggetto XMLHttpRequest */
	function getHTTPObject(){
        if(typeof XMLHttpRequest != 'undefined'){
            return new XMLHttpRequest();
        }
        
        try {
            return new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try {
                return new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {
            	alert("Il tuo browser non è abilitato al corretto uso del sito");
            }
        }
        
        return false;
    }
