function newWindow(breite, hoehe) {
   fenster=window.open
      ("","newWindow","width="+breite+", height="+hoehe+", toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no");
   fenster.focus();
}

function newWindow2(breite2, hoehe2) {
   fenster=window.open
      ("","newWindow2","width="+breite2+", height="+hoehe2+", toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no");
   fenster.focus();
}

function newWindow3(breite3, hoehe3) {
   fenster=window.open
      ("","newWindow3","width="+breite3+", height="+hoehe3+", toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no");
   fenster.focus();
}

