﻿// http://blog.antikoerperchen.de/beitrag/41/javascript-xhtml-neues-fenster-popup-oeffnen.html
// <a href="javascript:popUp1('meine_seite.html')">Kontaktformular</a>
// <a href="javascript:popupKontakt('/kontaktformular/index.php')">Kontaktformular</a>
function popupKontakt(seite)
   {
   var eigenschaft,sbreite,shoehe,fenster02;
   var left,top;
 
   //Bildschirmauflösung ermitteln:
   var ns6=(!document.all && document.getElementById);
   var ie4=(document.all);
   var ns4=(document.layers);

if(ns6||ns4)
      {
      sbreite = innerWidth;
      shoehe = innerHeight;
      } else if(ie4)
         {
         sbreite = document.body.clientWidth;
         shoehe = document.body.clientHeight;
         }
 
   fensterbreite=340; //fensterbreite=outerWidth; um Fenster in voller Breite zu öffnen
   //shoehe=shoehe+100;
   shoehe=shoehe;
   shoehe=510;
   x=(sbreite-fensterbreite);
   

left=(screen.availWidth - fensterbreite) / 2;
top=(screen.availHeight - shoehe) / 2;

   //popUp=window.open(seite, 'NewWindows', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width='+fensterbreite+', height='+shoehe+', left='+x+', top=0');
   popUp=window.open(seite, 'NewWindows', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width='+fensterbreite+', height='+shoehe+', left='+left+', top='+top+'');
   };