function bilder(a1,a2,a3,a4)
   {
   bild = a1;
   breite = a2;
   hoehe = a3;
   titel = a4;
   if(navigator.appName == "Netscape")
   // Navigator stellt die Grafik nur mit Rand links und oben dar.
      {
      fensterhoehe = hoehe + 8;
      fensterbreite = breite + 8;
      }
   else
      {
      fensterhoehe = hoehe;
      fensterbreite = breite;
      }
   bedingungen = 'toolbar=0,location=0,menubar=0,scrollbars=0,resizable=0,left=0,top=0,height='+fensterhoehe+',width='+fensterbreite;
   fenster = open("","",bedingungen)
   fenster.document.open();
   with (fenster)
      {
      document.write('<html><head> <title>' + titel+'</title></head>');
      document.write('<body onblur="window.close()" leftmargin="0" topmargin="0">');
      document.write('<img src="'+bild+'" width="'+ breite +'" height="'+ hoehe +'" border="0" alt="'+ titel+'">');
      


      document.write('</body></html>');
      }
     fenster.document.close();
   }





function seite(a1,a2,a3,a4)
   {
   bild = a1;
   breite = a2;
   hoehe = a3;
   titel = a4;
   if(navigator.appName == "Netscape")
   // Navigator stellt die Grafik nur mit Rand links und oben dar.
      {
      fensterhoehe = hoehe + 8;
      fensterbreite = breite + 8;
      }
   else
      {
      fensterhoehe = hoehe;
      fensterbreite = breite;
      }
   bedingungen = 'toolbar=0,location=0,menubar=0,scrollbars=0,resizable=0,left=0,top=0,height='+fensterhoehe+',width='+fensterbreite;
   fenster = open("","",bedingungen)
   fenster.document.open();
   with (fenster)
      {
      document.write('<html><head> <title>' + titel+'</title></head>');
      document.write('<body onblur="window.close()" leftmargin="0" topmargin="0">');
      document.write('<object data="'+bild+'" type="text/html" width="'+ breite +'" height="'+ hoehe +'" border="0" alt="'+ titel+'" Ihr Browser kann das Objekt leider nicht anzeigen! schade eigentlich</object>');
      


      document.write('</body></html>');
      }
     fenster.document.close();
       }


       
