   <!-- 
   
   function compareBrowser() {
   if(navigator.appName == "Microsoft Internet Explorer")
   {Bpadding = 130; Hpadding = 200;
   } else { Bpadding = 130; Hpadding = 180;}
   }
   
   function winOpen(url, breite, hoehe) {
   
      compareBrowser()
      FB = breite+Bpadding
	  FH = hoehe+Hpadding
      // Errechnet Koordinaten, um das Popup zentriert zu platzieren
      links = (screen.width/2)-(FB/2);
      oben = (screen.height/2)-(FH/2);
      Fenster = window.open(url,"popup","height="+FH+",width="+FB+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
      Fenster.focus();
	  Fenster.resizeTo(FB, FH)
   } 
   
   function popUp(url, breite, hoehe) {
      FB = 690
	  FH = 730
      // Errechnet Koordinaten, um das Popup zentriert zu platzieren
      links = (screen.width/2)-(FB/2);
      oben = (screen.height/2)-(FH/2);
      Lageplan = window.open(url,"popup","height="+FH+",width="+FB+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = yes,fullscreen = no,top ="+oben+",left ="+links);
      Lageplan.focus();
   }
   //--> 