  function oeffne( seite, breite, hoehe, scrollbars )
  {
    breite=breite+30;                              // PLatz für Rand
    hoehe=hoehe+75;                                // mehr PLatz für Link zurück
    if ( scrollbars==1 ) { 

       F1 = open(seite,"Ausschreibung","width="+breite+",height="+hoehe+",screenX=100,screenY=50, scrollbars=yes");
    }
    else {
       F1 = open(seite,"Ausschreibung","width="+breite+",height="+hoehe+",screenX=100,screenY=50");
    }
  }