function ShowPicture(picture, iwidth, iheight)
{
  PreviewWindow = window.open("", "Grossansicht", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,with=800,height=600");
  PreviewWindow.document.open();
  PreviewWindow.document.write("<HTML><HEAD>");
  PreviewWindow.document.write("<TITLE>Bildansicht</TITLE>");
  PreviewWindow.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>");
  PreviewWindow.document.write("<FORM><CENTER>")
  PreviewWindow.document.write("<p><img src='http://www.tsv.ch/PhotosHR/"+picture+"' width="+iwidth+" height="+iheight+" alt='Bild mit grosser Auflösung'></p>");  
  PreviewWindow.document.write("<HR><FORM><INPUT TYPE = 'button' VALUE='Schliessen' " + "onClick='window.close()'></FORM>");
  PreviewWindow.document.write("</CENTER></BODY></HTML>");
  PreviewWindow.document.close();  
}
                                                  