function ImageWindow(w_1,w_2,w_3,w_4)
   {
   bild = w_1;
   titel = w_2;
   breite = w_3;
   hoehe = w_4;
   if(navigator.appName == "Netscape")
      {
      fensterhoehe = hoehe + 15;
      fensterbreite = breite + 15;
      }
   else
      {
      fensterhoehe = hoehe;
      fensterbreite = breite;
      }
   bedingungen = 'toolbar=0,location=0,menubar=0,scrollbars=0,resizable=0,height='+fensterhoehe+',width='+fensterbreite;
   fenster = open("","",bedingungen)
   fenster.document.open();
   with (fenster)
      {
      document.write('<html><head><title>' + titel + '</title>')
	  document.write('<script language="javascript">');
	  document.write('if (parseInt(navigator.appVersion) >= 4) window.moveTo((screen.width/2)-('+breite+'/2+10),(screen.height/2)-('+hoehe+'/2+20));');
	  document.write('</script></head>');
      document.write('<body onblur="window.close()" leftmargin="0" topmargin="0">');
      document.write('<img src="'+ bild +'" width="'+ breite +'" height="'+ hoehe +'" border="0" alt="'+ titel +'" galleryimg="no" onMouseDown="return false">');
      document.write('</div></body></html>');
      }
     fenster.document.close();
   }


