function Zoom(myPicture,untertext)
{
   var oPopup;
   var iWidth=800;
   var iHeight=600;

   oPopup=window.open('', 'start', 'width=' + iWidth + ',height=' + iHeight + ',scrollbars=0,status=0,menu=0,resizable=1,top=0,left=0');

   oPopup.document.open();
   oPopup.document.write("<HTML>\n");
   oPopup.document.write("<HEAD>\n");
   oPopup.document.write("  <TITLE>Bild-Betrachter</TITLE>\n");
   oPopup.document.write("</HEAD>\n");
   oPopup.document.write('<body text="#A0A0A0" bgcolor="#000000" link="#F0C880" alink="#A08020" vlink="#F0C880">\n');
   oPopup.document.write('  <TABLE BORDER="0" WIDTH="100%" HEIGHT="100%" CELLPDADDING="0" CELLSPACING="0">\n');
   oPopup.document.write('    <TR><TD VALIGN="TOP" ALIGN="CENTER"><h4>- - zum Schliessen Bild anklicken - -</H4></TD></TR>\n');
   oPopup.document.write('    <TR><TD VALIGN="MIDDLE" ALIGN="CENTER"><A HREF="#" OnClick="JavaScript:self.close();">\n');
   oPopup.document.write('      <IMG SRC="' + myPicture + '" ALT="zum Schliessen Bild anklicken." BORDER=0></A><BR />'+untertext+'</TD></TR>\n');
   oPopup.document.write('    <TR><TD VALIGN="BOTTOM" ALIGN="CENTER"><h4>(c) eisi007 2004</H4></TD></TR>\n');
   oPopup.document.write('  </TABLE>\n');
   oPopup.document.write('</BODY></HTML>');
   oPopup.document.write("\n\n\n");
   oPopup.document.close();

   if (oPopup.outerHeight) oPopup.moveTo((screen.availWidth-oPopup.outerWidth)/2, (screen.availHeight-oPopup.outerHeight)/2);
   else oPopup.moveTo((screen.availWidth-iWidth)/2, (screen.availHeight-iHeight)/2);
   oPopup.focus();
   
}
