function erzeugeAnfrage() {
  var anfrage = null;
  try {
    anfrage = new XMLHttpRequest();
  } catch (versuchmicrosoft) {
    try {
      anfrage = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (anderesmicrosoft) {
      try {
        anfrage = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (fahlschlag) {
        anfrage = null;
      }
    }
  }

  if (anfrage != null) {
    return anfrage;
  }
}
var anfrage = erzeugeAnfrage();
