<!-- Original:  Anders Jennerberg (anders@katedral.se)  -->
<!-- modifiziert: Sven Buchholz (buchholz@preisler.de)  -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

function ViewImage(ifile,ix,iy) { 

fenster_hoehe = iy + 64;
fenster_breite = ix;
tab_breite = ix;

var win;
var sWidth;
var sHeight;
var NS = (document.layers) ? 1 : 0;
win = window.open("","imageviewer","width="+fenster_breite+",height="+fenster_hoehe+",menubar=no,toolbar=no");

win.focus();

win.document.open();
win.document.write("<html><head><title>Gro&szlig;bild</title>");


win.document.write('<style type="text/css">');
win.document.write("A:Link { text-decoration : none; }");
win.document.write("body { margin-left:-8px; margin-top:-8px; }");
win.document.write(".schrift {font-family:Verdana, Helvetica, Arial, Sans-serif; font-size:8pt; font-weight:bold; color:#FFFFFF;}");
win.document.write("</style>");

win.document.write('</head><body bgcolor="#FFFFFF" link="#FFFFFF" alink="#00629C">');
win.document.write('<table width='+fenster_breite+' border=0 cellpadding="0" cellspacing="0">');
win.document.write('<td width='+tab_breite+' class="schrift" bgcolor="#0000b8" align=right valign=bottom><br><br><a href="javascript:self.close()">Fenster schlie&szlig;en</a><br></td></tr></table>');
win.document.write('<div align=center><img src='+ifile+' width='+ix+' height='+iy+'></div');
win.document.write("</body></html>");
win.document.close();

}
