<!--
function FotoWindow(url,b,h,titel,beza,bezb)
{
var prop,cwidth,cheight,canvas,b,h,beza,bezb;
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);
if(ns6||ns4) {
cwidth = innerWidth;
cheight = innerHeight;
}
else if(ie4) {
cwidth = document.body.clientWidth;
cheight = document.body.clientHeight;
}
x = (cwidth-b)/2;
y = (cheight-h)/2;
prop="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no,statusbar=0";
canvas=window.open("","",prop);
canvas.focus();
canvas.document.open();
with (canvas) {
  document.write("<html><head><link rel='stylesheet' type='text/css' href='../script/ws.css'><body>");
  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>'+ titel +' - klicken um zu schliessen</title></head>');
  document.write("<" + "body onblur='window.close()';");
  document.write("marginwidth='0' marginheight='0' leftmargin='0' topmargin='0'>");
  document.write("<center>");
  document.write("<img src='"+ url +"' border='0'>");
  document.write("<table border='0' align='center' cellpadding='3' bgcolor='#DAEBCD'>");
  document.write("<td>");
  document.write("<font size='-1'>");
  document.write('<b>'+ beza +'</b>'+ bezb +'</font>');
  document.write("</td>");
  document.write("</table>");
  document.write("<center>");
  document.write("</body></html></body>");
  canvas.document.close();
}
}
//-->

