
/* -------- Page Bottom -- Begin ------------------------------------------------ */                     
  function Pageidbottom(_toploc) {    
    var _loc;
      _loc = _toploc+"px";     
      
      Monatstab = new Array("Januar", "Februar", "M&auml;rz", "April", "Mai", "Juni", "Juli",
                          "August", "September", "Oktober", "November", "Dezember");
                 
      document.write("<div style='position: absolute; top:");
        document.write(_loc);
        document.write("; left:000px; width:100%'>");                                                                                                                                                                            
                       
      document.write("<div style='position:absolute; top:000px; left:000px; width:100%'>");                                                                                                                                                                           
        document.write("<hr size='2' height='5'>");                                                                                                                                                                                                                   
          document.write("<form>");                                                                                                                                                                                                                                   
            document.write("<input type=button value='Back' onclick='history.back()'");                                                                                                                                                                               
                   document.write("style='margin-top:005px; margin-left:005px; width:050px;'/>");                                                                                                                                                                      
          document.write("</form>");                                                                                                                                                                                                                                  
        document.write("<hr size='5' width='100%' height='5'>");                                                                                                                                                                                                      
      document.write("</div>");                                                                                                                                                                                                                                       
                                                                                                                                                                                                                                                   
      document.write("<div style='position:absolute; top:020px; left:100px; width:500px; background-color:#88bef8;");
        document.write("font-family:Courier New; font-style:normal; font-size:08pt; font-weight:100;");
        document.write("letter-spacing:000px; text-align:left;'>"); 

      var Path = window.location.pathname;  
      var Dir = Path.split("/");
      Dir.reverse();
      var Name = Dir[0];  
      
      var lastmodify = document.lastModified;
      var modify = lastmodify.split("/");   
      var Tag = modify[1];
      Monat = modify[0]-1; 
      var Jahr = modify[2];    
      
      var Jahro = Jahr.split(" ");
      var Jahr = Jahro[0];
      var Timeu = Jahro[1];         

      var Monatname = Monatstab[Monat];
      
      document.write('"' + Name + '" modified: ' + Tag + ' ' + Monatname + ' ' + Jahr +' - ' + Timeu);   
      
      document.write("</div>");                                                                                                                                                                                                                                       
      document.write("</div>");  
    }                                                                                                                                                                                                                                    
/* -------- Page Bottom -- End -------------------------------------------------- */   

/* -------- Page Bottom -- Begin ------------------------------------------------ */                     
  function pageBottom(_toploc) {    
    var _loc;
      _loc = _toploc+"px";     

      document.write("<div style='position:absolute; top:"); 
      document.write(_loc);
      document.write("; left:0px; width:100%'>");
      document.write("<hr style='width:100%; color:blue; background-color:blue; height:5px; margin-left:5px; margin-right:0px;' />");   
      document.write("</div>");  
    }                                                                                                                                                                                                                                    
/* -------- Page Bottom -- End -------------------------------------------------- */

/* -------- Page Bottom -- Begin --------- for compatibility -------------------- */                     
  function PageBottom(_toploc) {    
      pageBottom(_toploc); 
    }                                                                                                                                                                                                                                    
/* -------- Page Bottom -- End -------------------------------------------------- */     


/* -------- Page Info Update ---------------------------------------------------- */ 
    function pageinfoupdate() {
      try {  
        parent.Logopage.pageinfo(); 
      }
      catch(Error) {
        //alert('pageinfoupdate - Error');
      }  
    }   
/* -------- Page Info Update -- End --------------------------------------------- */ 
 

/* -------- Page Info Update ---------------------------------------------------- */ 
  function pageinfo(mod) {          
    var url =  top.document.getElementById("pagearea").src; 
    //alert("pageinfo()"+" -lastModified="+mod);
    
    var path = url.split("/");
    var newpath = "";     
    if (path.length > 1) { 
      newpath = path[path.length-2]+'/'+path[path.length-1];   
    } 
    var url = "../"+newpath;  
    if (url != null)    
      top.document.getElementById("pagedef").innerHTML = url; 
       
    if (mod != null) { 
      moda = mod.split("/"); 
      if (moda.length > 1) {
        mod = moda[1]+"/"+moda[0]+"/"+moda[2]; 
        top.document.getElementById("pagemod").innerHTML = mod; 
      } else { 
        top.document.getElementById("pagemod").innerHTML = mod; 
      }  
    }   
  }  

      
/* -------- Page Log ------------------------------------------------------------ */    
  function pagelog(pagename) {  
    var xmlhttp = null;   
    var parameter = "../iplog.php?page="+pagename;  
    
      // Mozilla
      if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
      }
      // IE
      else if (window.ActiveXObject) {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
      }
   
      xmlhttp.open("GET", parameter, true);
    
      xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState != 4) {
          //document.getElementById("ergebnis").innerHTML = 'Seite wird geladen ...'+"Code: "+xmlhttp.readyState;
        }
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
          //document.getElementById("ergebnis").innerHTML = xmlhttp.responseText;
        }
      }
      xmlhttp.send(null);
  }   
/* -------- Page Log ---------- End --------------------------------------------- */  



/* -------- getPagedate --------------------------------------------------------- */  
    pd = "init"; 
  
      function getPagedate(page) { 
        var xx = execgetPagedate(page);
        
        var mdate = unescape(pd);   
        var dpos = mdate.search(/MDate:/);
        if (dpos != -1) {
          mdate = mdate.substr(dpos+6);
        } else {
          mdate = "0";   
          alert("ERROR - Page not found: "+pd);
        }  
       
        return mdate;
      }       
  
      function execgetPagedate(page) {                                                                                
        var xmlhttp = null;                                                                                           
        var parameter = "../pagedate.php?page=" + page;                                                                  
                                                                                                                    
        // Mozilla                                                                                                  
        if (window.XMLHttpRequest) {                                                                                
          xmlhttp = new XMLHttpRequest();                                                                           
        }                                                                                                           
        // IE                                                                                                       
        else if (window.ActiveXObject) {                                                                            
          xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");                                                         
        }                                                                                                           
                                                                                                                    
        xmlhttp.open("GET", parameter, false);                                                                      
                                                                                                                    
        xmlhttp.onreadystatechange = function () {                                                                  
          if (xmlhttp.readyState != 4) {                                                                            
            //document.getElementById("pagelastmod").innerHTML = 'Seite wird geladen ...'+"Code: "+xmlhttp.readyState; 
          }                                                                                                         
          if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {                                                   
            document.getElementById("pagelastmod").innerHTML = xmlhttp.responseText;                                   
            pd = document.getElementById("pagelastmod").innerHTML;                                                      
          }                                                                                                         
        }                                                                                                           
        xmlhttp.send(null);     
      } 
/* -------- getPagedate ------- End --------------------------------------------- */  



  
/* PopWin Function */
  function PopWin(wb, w, h) {  
    l = (screen.availWidth-w) /2;     
    t = (screen.availHeight-h) /2;     

    WinPop = window.open(wb, "Popup", "width="+w+",height="+h+",left="+l+",top="+t+",toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no");

    WinPop;
  }
/* PopWin end */  


/* NewWin Function */
  function NewWin(wb) {  
    w = (screen.availWidth);       
    h = (screen.availHeight);    
    l = 0;
    t = 0;

    WinNew = window.open(wb, "_blank", "width="+w+",height="+h+",left="+l+",top="+t+",toolbar=yes,scrollbars=yes,location=yes,statusbar=yes,menubar=yes,resizable=yes");
  }
/* NewWin end */  


/* NewURL Function */            /* _blank _parent etc... */
  function NewURL(wb, tar) {  
    WinURL = window.open(wb, tar);
  }
/* NewURL end */  

      
/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    Get/Set Language Functions                                                *
 *                                                                              *
 *                                                                              *
 *    SetLanguageCookie ("de")                                                  *
 *    lang = GetLanguageCookie ();                                              *                                                      *
 *                                                                              *
 * ---------------------------------------------------------------------------- *
*/              

/* Set Language Function */  
  function SetLanguageCookie (Wert) {      
    if ((Wert != 'de') && (Wert != 'ca') && (Wert != 'es') && (Wert != 'fr') && (Wert != 'en')) {
      alert("SetLanguageCookie, illegal value: " + Wert);  
    } else {  
      var Verfall = 1000 * 60 * 60 * 24 * 365;
      var jetzt = new Date();
      var Auszeit = new Date(jetzt.getTime() + Verfall);
      document.cookie = "userlang" + "=" + Wert + "; expires=" + Auszeit.toGMTString() + ";";   
    
      //alert("Cookie saved :" + Wert);
    }  
  }   
/* Set LanguageFunction end */  
           
           
/* Get Language Function */  
  function GetLanguageCookie () {  
    var Wert = getCookie("userlang");
    switch(Wert) {
      case "de":   
        break;    
        
      case "ca": 
        break;   
        
      case "es": 
        break;   
        
      case "fr": 
        break;   
        
      case "en": 
        break;       
       
      default: 
        //alert("GetLanguageCookie, illegal value: " + Wert);   
        Wert = "ca";  
    }   
    
    // alert("Cookie read " + Wert);  
    return Wert;
  }  
/* Get Language Function end */  
 

         
/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    Get Browsertype                                                           *
 *                                                                              *
 *                                                                              *
 *    browsertype = getbrowsertype();                                           *
 *                                                                              *                                                      *
 * ---------------------------------------------------------------------------- *
*/            
  function getbrowsertype() { 
    var browsertype = "unknown";
                                                                                  
    var agent = navigator.userAgent.toLowerCase(); 
    this.isIE      = agent.indexOf("msie") > -1;
    this.ieVer = this.isIE ? /msie\s(\d\.\d)/.exec(agent)[1] : 0;
    this.isMoz     = agent.indexOf('firefox') != -1;
    this.isSafari  = agent.indexOf('safari') != -1;
    this.quirksMode= this.isIE && (!document.compatMode || document.compatMode.indexOf("BackCompat") > -1);
    this.isOp      = 'opera' in window;
    this.isWebKit  = agent.indexOf('webkit') != -1;
    if (this.isIE) {  
      browsertype = "IE";                                                               
    } 
    
    if (this.isMoz) {  
      browsertype = "Mozilla";                                                               
    }  
    
    if (this.isSafari) {  
      browsertype = "Safari";                                                               
    }  
    
    if (this.isOp) {  
      browsertype = "Opera";                                                               
    } 
    
    //tracelog("Browsertype: " + browsertype);                                                   
                                                                                                            
    return (browsertype);                           
  } 
/* Get Browsertype end */    
                 
                 
/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    Cookie Functions                                                          *
 *                                                                              *
 *                                                                              *
 *    value = getCookie("cook");                                                *
 *    setCookie(name, value, [expires, path, domain, secure]);                  *   
 *                                                                              *                                                      *
 * ---------------------------------------------------------------------------- *
*/                    
  function getCookie(name) {
    wert = readCookie(name); 
    if (wert != null) { 
      return wert; 
    } else {
      return "";
    }    
  }
  
  function readCookie(name) {
    var arg = name + "=";
    var alen = arg.length;
    var clen = document.cookie.length;
    var i = 0;
    while (i < clen) {
      var j = i + alen;
      if (document.cookie.substring(i, j) == arg)
        return getCookieVal(j);
      i = document.cookie.indexOf(" ", i) + 1;
      if (i == 0)
        break;
    }
    return null;
  } 
  
  function getCookieVal(offset) {
    var endstr = document.cookie.indexOf(";", offset);
    if (endstr == -1)
      endstr = document.cookie.length;
    return unescape(document.cookie.substring(offset, endstr));
  }  
  
  
  

  function setCookie(name, value, expires, path, domain, secure) {  
    if (expires != null) { 
      var Verfall = 1000 * 60 * 60 * 24 * expires;
      var jetzt = new Date();
      var Auszeit = new Date(jetzt.getTime() + Verfall); 
    }
      
    document.cookie = name + "=" + escape(value) +
      ((expires) ? "; expires=" + Auszeit.toGMTString() : "") +
      ((path) ? "; path=" + path : "") +
      ((domain) ? "; domain=" + domain : "") +
      ((secure) ? "; secure=" : "");  
      
    //alert("Cookie written");  
  }
  /* Cookie functions end */ 

  
/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    Fader functions                                                           *
 *                                                                              *
 *                                                                              *
 *    initFade(object)                                                          *
 *                                                                              *
 * ---------------------------------------------------------------------------- *
*/                                                                                                          
    var fadeobj;
     
    function initFade(obj) {  
    	fadeobj = document.getElementById(obj);  
    	for (var i=0; i<101; i++)
		    setTimeout('setOpacity('+i+')', i*10);   
		
  	return false;  
    }

    function setOpacity(value) {
    	fadeobj.style.opacity = value/100;
	    fadeobj.style.filter = 'alpha(opacity=' + value + ')';  
    }  
  /* Fader functions end */   



/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    print web Page                                                            *
 *                                                                              *  
 *    This script is written by Eric (Webcrawl@usa.net)                         *
 *    For full source code, installation instructions,                          *
 *    100's more DHTML scripts, and Terms Of                                    *
 *    Use, visit dynamicdrive.com                                               *
 *                                                                              *
 *    printit();                                                                *
 *                                                                              *
 * ---------------------------------------------------------------------------- *
*/  
function printit(){  
  if (window.print) {
      window.print() ;  
  } else {
    var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
    document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
    WebBrowser1.ExecWB(6, 2);//Use a 1 vs. a 2 for a prompting dialog box    WebBrowser1.outerHTML = "";  
  }
}

        
/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    get local Date                                                            *
 *                                                                              *
 *                                                                              *
 *    localdate = localDate();                                                  *
 *                                                                              *
 * ---------------------------------------------------------------------------- *
*/           
  function localDate() {
    var adate = new Date();      
    
    nday = adate.getDay();       
    switch (nday) {                  
      case 0 : tday = "Sonntag"; break;
      case 1 : tday = "Montag"; break;
      case 2 : tday = "Dienstag";break;
      case 3 : tday = "Mittwoch"; break;
      case 4 : tday = "Donnerstag"; break;
      case 5 : tday = "Freitag"; break;
      case 6 : tday = "Samstag"; break;
    }   
    
    ndate = adate.getDate();  
    if (ndate < 10) {
      tdate = "0"+ndate;
    } else {
      tdate = ndate;
    }    
     
    nmonth = adate.getMonth();
    switch (nmonth) {
      case 0 : tmonth = "Januar"; break;
      case 1 : tmonth = "Februar"; break;
      case 2 : tmonth = "M&auml;rz"; break;
      case 3 : tmonth = "April"; break;
      case 4 : tmonth = "Mai"; break;
      case 5 : tmonth = "Juni"; break;
      case 6 : tmonth = "Juli"; break;
      case 7 : tmonth = "August"; break;
      case 8 : tmonth = "September"; break;
      case 9 : tmonth = "Oktober"; break;
      case 10 : tmonth = "November"; break;
      case 11 : tmonth = "Dezember"; break;
    }  
    
    tjahr = 1900 + ((1900 + adate.getYear() ) % 1900);    
    
    ldate = tday+", "+tdate+". "+tmonth+" "+tjahr;     
    
    return (ldate);
  }   
  


/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    get List of Elements of specified Classname                               *
 *                                                                              *
 *                                                                              *
 *    list = getElementsByClassname("button")                                   *
 *                                                                              *
 * ---------------------------------------------------------------------------- *
*/   
  function getElementsByClassname(Classname) {    
      var adiv = document.getElementsByTagName("div");              
      if (adiv.length == 0) {                                       
        alert("No Elements found for -div- Tag");                   
        return;                                                     
      }                                                             
                                                                    
      var objlist=[];                                               
      var xclassname;                                               
                                                                    
      //alert("Elements found for -div- Tag: "+adiv.length);        
      for (i = 0; i < adiv.length; i++) {                           
        //alert("adiv: "+adiv[i]);                                  
        divclassname = adiv[i].className;                           
                                                                    
        if ((divclassname !== null) && (divclassname != "")) {      
          //alert("Classname found: "+divclassname);                
                                                                    
          xclassname = divclassname.split(" ");                     
          if (xclassname.length = 2) {                              
            if (xclassname[0] == Classname) {                       
              objlist.push(adiv[i]);                                
            }                                                       
          } else {                                                  
            objlist.push(xclassname);                               
          }                                                         
        }                                                           
      }                                                             
      return(objlist);                                              
  }  
  
  

/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    setEventListener  (Browser-specific)                                      *
 *                                                                              *
 *                                                                              *
 *    setEventListener(obj, evTyp, fun, direction);                             *
 *                                                                              *
 * ---------------------------------------------------------------------------- *
*/    
  function setEventListener(obj, evTyp, fun, direction) {
    if (obj.addEventListener) {
      obj.addEventListener(evTyp, fun, direction);
      return true;
    } else {
      if (obj.attachEvent) {
        obj.attachEvent("on"+evTyp, fun);
        return true;
      } else {
        return false;
      }
    }
  }            
  
  


/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    get actual value of css-style definition                                  *
 *                                                                              *
 *                                                                              *
 *    areawidth = getCssIdStyleValue("button01", "width");                      *
 *                                                                              *
 * ---------------------------------------------------------------------------- *
*/  
function getCssIdStyleValueIE(elid, eval) {     
  //tracelog("getCssIdStyleValueIE(elid, eval) -elid="+elid+" -eval="+eval);  

  var cssvalue = document.getElementById(elid).currentStyle[eval];
            
  //tracelog("getCssIdStyleValueIE() -eval="+eval+" -return="+cssvalue);       
  return(cssvalue);
}    

function getCssIdStyleValueMOZ(elid, eval) {   
  //tracelog("getCssIdStyleValueMOZ(elid, eval) -elid="+elid+" -eval="+eval); 
  
  var el = document.getElementById(elid);
  var cssvalue = document.defaultView.getComputedStyle(el, null).getPropertyValue(eval);  
            
  //tracelog("getCssIdStyleValueMOZ() -eval="+eval+" -return="+cssvalue);        
  return(cssvalue);
}            

function getCssIdStyleValue(elid, eval) {  
  var bt = getbrowsertype();
    switch(bt) {
      case "IE":    
        switch(eval) {
          case "border-top-width": 
            eval = "borderWidth";
            break; 
          case "border-top-color": 
            eval = "borderColor";
            break;
          case "font-size":   
            eval = "fontSize";
            break;
          case "font-family":  
            eval = "fontFamily";
            break;
          case "font-weight": 
            eval = "fontWeight";
            break; 
        }    
        return (getCssIdStyleValueIE(elid, eval));      
        break;
        
      case "Mozilla":
        return (getCssIdStyleValueMOZ(elid, eval));
        break;
        
      case "Safari":
        return (getCssIdStyleValueMOZ(elid, eval));
        break;  
        
      case "Opera":
        return (getCssIdStyleValueMOZ(elid, eval));
        break;  
        
      default: 
        return (getCssIdStyleValueMOZ(elid, eval));
    }         
}   


    
/* ---------------------------------------------------------------------------- *
 *                                                                              *
 *    get defined value of css-style definition                                 *
 *                                                                              *
 *                                                                              *
 *    areawidth = getCssClassStyleValue("button01", "width", "hover");          *
 *                                                                              *
 * ---------------------------------------------------------------------------- *
*/      
function getCssClassStyleIE(clid, eval) {   
/*
  width
  height  
  border-color    
  border-width   
  text-align      
  font-family    
  font-size     
  font-weight   
  letter-spacing   
  color   
  filter    
  background
*/  
  
  var ssindex  = -1;
  var srindex = -1;      
  
  var eclass = clid;    

  //tracelog("getCssClassStyleIE(clid, eval) -clid="+clid+" -eval="+eval+"  -->class="+eclass);  
   
  for (ssindex = 0; ssindex < document.styleSheets.length; ++ssindex) { 
    for (srindex = 0; srindex < document.styleSheets[ssindex].rules.length; ++srindex) {   
      //tracelog("getCssClassStyleIE() -selectorText="+document.styleSheets[ssindex].rules[srindex].selectorText.toLowerCase());
      if (document.styleSheets[ssindex].rules[srindex].selectorText.toLowerCase() == eclass) {         

        var eval = document.styleSheets[ssindex].rules[srindex].style[eval]; 
        //tracelog("getCssClassStyleIE() -eval="+eval+" -return="+eval); 
        
        return (eval);
      }
    }
  }   
  //tracelog("getCssClassStyleIE() -eval="+eval+" -return=null"); 
  return (null);
}        


function getCssClassStyleMOZ(clid, eval) {   
/*
  width
  height  
  borderColor    
  borderWidth   
  textAlign      
  fontFamily    
  fontSize     
  fontWeight   
  letterSpacing   
  color   
  filter    
  background
*/  
  
  var ssindex  = -1;
  var srindex = -1;      
  
  var eclass = clid;   

  //tracelog("getCssClassStyleMOZ(elid, eval) -elid="+clid+" -eval="+eval+"  -->class="+eclass);  

  for (ssindex = 0; ssindex < document.styleSheets.length; ++ssindex) { 
    for (srindex = 0; srindex < document.styleSheets[ssindex].cssRules.length; ++srindex) {  
      //tracelog("getCssClassStyleMOZ(clid): eclass="+eclass+" cssclass="+document.styleSheets[t].cssRules[i].selectorText.toLowerCase() );
      
      if (document.styleSheets[ssindex].cssRules[srindex].selectorText.toLowerCase() == eclass) {     
        //tracelog("getCssClassStyleMOZ(clid) equal: "+eclass+" --> class="+document.styleSheets[ssindex].cssRules[srindex].selectorText+" / ssindex "+ssindex+" srindex "+srindex);   
        
        var eval = document.styleSheets[ssindex].cssRules[srindex].style[eval];  
        //tracelog("getCssClassStyleMOZ() -eval="+eval+" -return="+eval); 
        
        return (eval);
      }
    }
  }  
}       

function getCssClassStyle(clid, eval) {   
  //tracelog("getCssClassStyle() -clid="+clid+" -eval="+eval); 
  var bt = getbrowsertype();
    switch(bt) {
      case "IE":   
        switch(eval) {
          case "border-top-width": 
            eval = "borderWidth";
            break; 
          case "border-top-color": 
            eval = "borderColor";
            break;  
          case "box-shadow": 
            eval = "boxShadow";
            break;  
          case "font-size":   
            eval = "fontSize";
            break;
          case "font-family":  
            eval = "fontFamily";
            break;
          case "font-weight": 
            eval = "fontWeight";
            break; 
        }    
        
        return (getCssClassStyleIE(clid, eval));
        break;
        
      case "Mozilla":   
        return (getCssClassStyleMOZ(clid, eval));
        break;
        
      case "Safari":
        return (getCssClassStyleMOZ(clid, eval));
        break;  
        
      case "Opera":
        return (getCssClassStyleMOZ(clid, eval));
        break;  
        
      default: 
        return (getCssClassStyleMOZ(clid, eval));
    }         
}   
              
  
          
/* -------- Trace Log ------------------------------------------------------------ */    
  function tracelog(logtext) {  
    var xmlhttp = null;   
    var parameter = "../tracelog.php?entry="+logtext;  
    
      // Mozilla
      if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
      }
      // IE
      else if (window.ActiveXObject) {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
      }
   
      xmlhttp.open("GET", parameter, false);         // false = NO asynch execute !!
    
      xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState != 4) {
          //document.getElementById("ergebnis").innerHTML = 'Seite wird geladen ...'+"Code: "+xmlhttp.readyState;
        }
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
          //document.getElementById("ergebnis").innerHTML = xmlhttp.responseText;
        }
      }
      xmlhttp.send(null);
  }   
/* -------- Trace Log ---------- End --------------------------------------------- */            
