    var http = false;

    if(navigator.appName == "Microsoft Internet Explorer") {
      http = new ActiveXObject("Microsoft.XMLHTTP");
    } else {
      http = new XMLHttpRequest();
    }

//Controllo duplicati codice fiscale
    function RMT_cfiscale(cfiscale,cmpcontrollo) {
      http.abort();
      http.open("GET", "/inc/http/RMT_cfiscale.asp?cfiscale=" + cfiscale, true);
      http.onreadystatechange=function() {
        if(http.readyState == 4) {
		  document.getElementById(cmpcontrollo).value = http.responseText;
		}

      }
      http.send(null);
    }
//Controllo duplicati indirizzo email
    function RMT_email(email,cmpcontrollo) {
      http.abort();
      http.open("GET", "/inc/http/RMT_email.asp?email=" + email, true);
      http.onreadystatechange=function() {
        if(http.readyState == 4) {
		  document.getElementById(cmpcontrollo).value = http.responseText;
		}

      }
      http.send(null);
    }
