<!--
function GrafikAnzeigen(GrafikURL)
{
Grafikfenster=window.open("","Foto","directories=no,copyhistory=no,toolbar=no,location=no,menubar=no,scrollbars=no,status=no,resizable=no,dependent=yes,hotkeys=no,width=295,height=195");
 Grafikfenster.focus();
 Grafikfenster.moveTo(screen.width/2-148, screen.height/2-98);
 Grafikfenster.document.open();
 with(Grafikfenster)
 {
 document.write('<html><head>');
 document.write('<scr'+'ipt type="text/javascr'+'ipt" language="JavaScr'+'ipt">');
 document.write("function click() { window.close(); } ");
 document.write("document.onmousedown=click ");
 document.write('</scr'+'ipt>');
 document.write('<title>www.KuhParadies.de - Foto</title></head>');
 document.write('<'+'body onLoad="Hinweis()" onblur="window.close()" ');
 document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
 document.write('<center>');
 document.write('<img src="../images/sammlung/'+GrafikURL+'.jpg "border="0">');
 document.write('</center>');
 document.write('</body></html>');
 Grafikfenster.document.close();
 }
 }
-->