// Übergabeparameter: bildquelle,breite,höhe,bildtitel
function ViewImage(bildurl,b,h,bildtitel)
{
var eigenschaften,sbreite,shoehe,fenster,b,h,z;
// stellt die Bildschirmabmessungen fest
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);

if(ns6||ns4) {
sbreite = innerWidth;
shoehe = innerHeight;
}
else if(ie4) {
sbreite = document.body.clientWidth;
shoehe = document.body.clientHeight;
}

x = (sbreite-b)/2;
y = ((shoehe-h)/2);
// zum Fenster die Höhe der Textzeile addieren
var zz = 0;
zz = (h*2)/2;
zz = (zz+40);

eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+zz+",scrollbars=yes,menubar=no,toolbar=no,statusbar=0";
fenster=window.open("","",eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">');
  document.write('<scr' + 'ipt type="text/javascr' + 'ipt" language="JavaScr' + 'ipt">');
  document.write('</scr' + 'ipt>');
  document.write('<title>'+ bildtitel +'</title><style fprolloverstyle>A:hover {text-decoration: overline underline; font-weight: bold}</style></head>');
  document.write('<' + 'body bgcolor="#C0C0C0"');
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<center>');
  document.write('<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">');
  document.write('<tr><td width="100%" height="20" bgcolor="#00B000" align="center">');
  document.write('<p><b><font face="Verdana" size="2" color="#FF0000"><a href="Javascript:window.close();" title="close window">');
  document.write('<font color="#FFFF00">Fenster schließen</font></a></font><font face="Verdana" size="2" color="#FFFF00"> ||');
  document.write(' <a href="Javascript:window.print();" title="print window"><font color="#FFFF00">Die Seite drucken</font></a></b></td></tr>');
  document.write('<tr><td width="100%" height="20" bgcolor="#00B000" align="center">');
  document.write('<blink><font size="2" face="Verdana" color="#FFFF00">&gt;&gt;INFO: '+ bildtitel +'&lt;&lt;</font></blink></td></tr>');
  document.write('<tr><td width="100%" height="100%" bgcolor="#C0C0C0"><p align="center"><font size="1" face="Verdana">');
  document.write('<img src="'+ bildurl +'" border="0" title="'+ bildtitel +'" alt="'+ bildtitel +'" onclick="window.close();">');
  document.write('</font></td></tr></center>');
  document.write('</table></body></html>');
  fenster.document.close();
  }
}
