var neu = 0;
function fenster(src, breite, hoehe) {
  var scrollbars = 0;
  var offset = 75;
  if(screen) {
    if(hoehe > screen.height-offset) {
      hoehe = screen.height-offset;
      breite += 16;
      scrollbars = 1;
    }
    if(breite > screen.width-offset) {
      breite = screen.width-offset;
      scrollbars = 1;
    }
  }
  if(neu && !neu.closed) neu.close();
  neu = window.open("", "neu", "width=" + breite + ",height=" + hoehe + ",scrollbars=" + scrollbars);
  neu.document.writeln('<html><head><title>DocCovington.net</title></head>');
  neu.document.writeln('<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>');
  neu.document.writeln('<img src="' + src + '" border=0>');
  neu.document.writeln('</body></html>');
  neu.focus();
}
