  function impressum(){
    if (navigator.appName=="Netscape"){
      var minHoehe=document.layers.impressum.top
      var aktHoehe=window.innerHeight; //NC-only
      if (aktHoehe>minHoehe){
        document.layers.impressum.top=aktHoehe-18;
      }
    }else{
      var minHoehe=parseInt(document.all.impressum.style.top);
      var aktHoehe=parseInt(document.body.offsetHeight);
      //document.all.impressum.style.top=aktHoehe-20;
      aktBreite=parseInt(document.body.offsetWidth);
      document.all.impressum.style.width=aktBreite-20;
    }
  }

  function neuLaden(){
    if (navigator.appName=="Netscape") location.reload();
    //location.reload();
  }
  
  function spracheWechseln(s){

    meinPfad =window.location.pathname;
    arrPfad= meinPfad.split("/"); 
    anzTeile= arrPfad.length;
    //alert(anzTeile);
    restTeil=arrPfad[2];
    for (i = 3; i < anzTeile; i++) {
      restTeil=restTeil +"/"+arrPfad[i];
    }
    //restTeil= teilePfad.slice(2,anzTeile);
    //alert(restTeil);
    //restTeil= restTeil.shift();  //kann nur NC

    if (s=="de"){
      neuerPfad="http://www.weyermed.com/de/"+restTeil;   //PFAD ANPASSEN!!!
      document.location=neuerPfad;
    }
    if (s=="f"){
      //alert("Sorry, our french version will be published in March 2001.");
      neuerPfad="http://www.weyermed.com/f/"+restTeil;   //PFAD ANPASSEN!!!
      document.location=neuerPfad;
    }
    if (s=="nl"){
      neuerPfad="http://www.weyermed.com/nl/"+restTeil;   //PFAD ANPASSEN!!!
      document.location=neuerPfad;
    }
  
  }
