    var xmlHttp = null;
    var wert_global = "";
    
/* ######################## SELECT ############################ */    
    function showCaddy() {
      
      
/* ######################## IMMER AJAX-GLEICH ############################ */
      if (window.ActiveXObject) {
        try {
          xmlHttp= new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
          try {
            xmlHttp= new ActiveXObject("Microsoft.XMLHTTP");
          } catch (e) {
          }
        }
      } else if (window.XMLHttpRequest) {
        try {
          xmlHttp= new XMLHttpRequest();
        } catch (e) { 
        }
      }
/* ######################## /IMMER AJAX-GLEICH ########################### */ 


/* ######################## AUFRUF PHP-SKRIP ############################ */    
      if (xmlHttp) {
        xmlHttp.open('GET', '../philatelie/einkaufswagen_statisch.php', true);
        //xmlHttp.onreadystatechange = daten(wert): DAS GEHT NICHT (s.u. Forums-Zitat);
        xmlHttp.onreadystatechange = new Function('fx', 'daten()'); //es muss wohl erst eine Funktion als Objekt instanziert werden...?
        xmlHttp.send(null);
      }
    }
    
    function daten() {
      var ausgabe = '';       

      if (xmlHttp.readyState == 4) { 
        text = xmlHttp.responseText;
        if (text != "") {
            ausgabe += text;
          document.getElementById('warenkorb').innerHTML = ausgabe;                    
        }
        /*        
        if (ausgabe != "") {
          document.getElementById(wert+'e').style.display = "block";
        } else {
          document.getElementById(wert+'e').style.display = "block";        
        }
        */        
      }
    }     
