// Galerie

var eigenschaft,fenster,b,h,text;
var win = null;
function FotoWindow(bildurl,b,h,text)
{
LeftPosition = (screen.width) ? (screen.width-b)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
eigenschaft = 'height='+h+',width='+b+',top='+TopPosition+',left='+LeftPosition+',menubar=no,toolbar=no,scrollbars=no,resizable=no';

fenster=window.open("","",eigenschaft);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  document.write("<script type='text/javascript' language='JavaScript'>");
  document.write("function click() { window.close(); } ");  // bei click  schliessen
  document.write("document.onmousedown=click ");
  document.write("</script>");
  document.write('<title>klick to close</title></head>');
  document.write('<body style="background: #ffffff; font-size: 10px; color: #000000; font-family: Verdana, Arial, sans-serif; " onblur="window.close()" '); // bei Focusverlust schliessen
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<center>');
  document.write('<img src="'+ bildurl +'"border="0">');
  document.write('</center>');
  document.write('<div align="center">'+ text +'</div>');
  document.write('</body></html>');
  fenster.document.close();
}
}