function fenster(ziel,breite,hoehe)    {
      var pop = null;
      pop =  window.open(ziel,'neuesfenster','width='+breite+',height='+hoehe+',resizable=no,status=no,scrollbars=no,menubar=no,toolbar=no,directories=no')
      if (pop) {
         pop.moveTo(screen.width/2-breite/2,screen.height/2-hoehe/2);
         pop.window.focus();
      }
}

function picwin(ziel,breite,hoehe)    {
      var pop = null;
      pop =  window.open(ziel,'picwin','width='+breite+',height='+hoehe+',resizable=no,status=no,scrollbars=no,menubar=no,toolbar=no,directories=no')
      if (pop) {
         pop.moveTo(screen.width/2-breite/2,screen.height/2-hoehe/2);
         pop.window.focus();
      }
}

function fenster2(ziel,breite,hoehe)    {
      var pop = null;
      pop =  window.open(ziel,'neuesfenster','width='+breite+',height='+hoehe+',resizable=no,status=no,scrollbars=yes,menubar=no,toolbar=no,directories=no')
      if (pop) {
         pop.moveTo(40,60);
         pop.window.focus();
      }
}

