function ShowClip(img_url, img_title)
{
  var wnd;
  wnd = open("","Bildgross",
             "width=360,height=360,directories=no,location=no,menubar=no,scrollbars=yes,toolbar=no" +
             ",dependent=yes,screenX=10,screenY=20");
  with(wnd.document)
  {
    open("text/html");
    writeln("<html>");
    writeln("<head><title>" + img_title + "</title>");
    writeln("<body style=\"background-color:#000;font-family:sans-serif;scrollbar-base-color:#99cccc;scrollbar-3dlight-color:#99cccc;")>
		writeln("scrollbar-arrow-color:#ccffff;scrollbar-darkshadow-color:#003333;scrollbar-face-color:#99cccc;")>
		writeln("scrollbar-highlight-color:#ccffff;scrollbar-shadow-color:#003333;scrollbar-track-color:#99cccc;\">");
    writeln("<center><table border=0 cellspacing=0 cellpadding=0 width=\"100%\" height=\"100%\">")
    writeln("<tr><td align=\"center\" valign=\"middle\"><object width=\"320\" height=\"240\">");
    writeln("<param name=\"movie\" value=\"http://texner.net/pix/" + img_url + ".swf\"></param><param name=\"wmode\" value=\"transparent\"></param>");
    writeln("<embed src=\"http://texner.net/pix/" + img_url + ".swf\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"240\"></embed></object></td></tr>");
    write("<tr><td align=center><br />");
    write("<a href=\"javascript:self.close()\">Fenster schlie&szlig;en</a>");
    writeln("</td></tr>");
    writeln("</table></center>");
    writeln("</body></html>");
    close();
  }
  wnd.focus();
}
