
function httpXMLobjects() {
   var xmlHttp=null;
   try {
      // Fuer Firefox, Opera und Safari
      xmlHttp=new XMLHttpRequest();
   }
   catch (e) {
      // Der Internet Explorer wills wieder anders
      try {
         xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
      catch (e) {
         xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
   }
   return xmlHttp;
}

