function Impressum() {
 MeinFenster =
 window.open("Impressum.htm", "Zweitfenster", "width=400,height=450,scrollbars");
 MeinFenster.focus();
}

function pruefen() 
  {
  if (parent.frames.length == 0)
    top.location.href = "../index.html?" + location.pathname;
  else
    {
    if(top.frames[0].name == "TANGOFreiburgBanner")
      {
      // nix
      }
    else
      top.location.href = "../index.html?" + location.pathname;
    }
  return
  }

      function bigger(pic,headline){

        // Hier Anpassungen vornehmen 
        var abstand = 10;
        var hintergrund = '#000000';
        var rahmenFarbe = '#ffffff';
        var rahmenStyle = 'solid';
        var rahmenBreite ='1px';
      
        // Ab hier nicht mehr ;)
        var temp = new Image();
        temp.src = pic;
        var head = "<html><head></head><body style='paddig:0px; margin:"+abstand+"px; background-color:"+hintergrund+";'>";
        var foot = "</body></html>";
        
        var newWindow = window.open('#',headline,'height='+(temp.height+2*abstand)+'px, width='+(temp.width+2*abstand)+'px');
        with(newWindow.document){
          open();
          write(head+'<img style="border:'+rahmenBreite+' '+rahmenStyle+' '+rahmenFarbe+';" src="'+pic+'">'+foot);
          close();
        }
      }

