function showLargePic(PIC)
{
 var OUT = "<html><head><title>Grossansicht</title></head><body>"
 + "<img src='"+PIC+"' name='largePic' title='"+PIC+"' style='max-width:800; max-height:600;'>"
 + "<script type='text/javascript'>window.resizeTo(800, 600);</script>"
 + "</body></html>";
 var popup = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=0,height=0,left=250,top=250');
 popup.document.write(OUT);
 popup.window.focus();
}
